Ignore:
Timestamp:
2003-10-03T14:07:35+12:00 (21 years ago)
Author:
mdewsnip
Message:

Many more small improvements and tooltips added. Still more to come!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/file/FileSystemModel.java

    r5300 r5564  
    66import javax.swing.event.*;
    77import javax.swing.tree.*;
     8import org.greenstone.gatherer.Dictionary;
    89import org.greenstone.gatherer.Gatherer;
    910import org.greenstone.gatherer.file.FileFilter;
     
    111112        FileNode node = (FileNode) path.getLastPathComponent();
    112113        // If this error node is a dummy node (ie has no associated file) we can't unmap it, so we iterate through its children refreshing each in turn. The exception being Greenstone Collections, as it is a dummy node but we can map/unmap it
    113         if(node.getFile() == null && !node.toString().equals(Gatherer.dictionary.get("Tree.World"))) {
     114        if(node.getFile() == null && !node.toString().equals(Dictionary.newget("Tree.World"))) {
    114115        for(int i = 0; i < node.getChildCount(); i++) {
    115116            FileNode child = (FileNode) node.getChildAt(i);
Note: See TracChangeset for help on using the changeset viewer.