Changeset 11617


Ignore:
Timestamp:
2006-04-07T09:50:24+12:00 (18 years ago)
Author:
mdewsnip
Message:

Minor changes.

Location:
trunk/gli/src/org/greenstone/gatherer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/collection/CollectionTree.java

    r11616 r11617  
    3131import javax.swing.*;
    3232import javax.swing.tree.*;
     33import org.greenstone.gatherer.Configuration;
     34import org.greenstone.gatherer.Dictionary;
     35import org.greenstone.gatherer.Gatherer;
    3336import org.greenstone.gatherer.gui.ExplodeMetadataPrompt;
    3437import org.greenstone.gatherer.gui.tree.DragTree;
    3538import org.greenstone.gatherer.gui.tree.DragTreeCellRenderer;
    36 import org.greenstone.gatherer.Configuration;
    37 import org.greenstone.gatherer.Dictionary;
    38 import org.greenstone.gatherer.Gatherer;
    3939
    4040
  • trunk/gli/src/org/greenstone/gatherer/file/WorkspaceTree.java

    r11616 r11617  
    3737import org.greenstone.gatherer.Gatherer;
    3838import org.greenstone.gatherer.gui.CreateShortcutPrompt;
    39 import org.greenstone.gatherer.gui.GLIButton;
    4039import org.greenstone.gatherer.gui.tree.DragTree;
    4140
     
    274273        }
    275274
    276         DebugStream.println("Number of files/folders selected: " + selection_paths.length);
    277 
    278275        // Only meta-audit and delete are available if multiple items are selected...
    279276        if (selection_paths.length > 1) {
     
    339336        // Create shortcut
    340337        if (source == create_shortcut) {
    341         CreateShortcutPrompt mp = new CreateShortcutPrompt(workspace_tree, node.getFile());
    342         mp.destroy();
     338        CreateShortcutPrompt csp = new CreateShortcutPrompt(workspace_tree, node.getFile());
     339        csp.destroy();
    343340        }
    344341
Note: See TracChangeset for help on using the changeset viewer.