Changeset 5865


Ignore:
Timestamp:
2003-11-18T08:42:10+13:00 (20 years ago)
Author:
jmt12
Message:

I don't remember changing anything in this class, but according to CVS I did. Weird. (Don't worry, I did ensure that it wasn't that I'd saved it as a PC file rather than Unix).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/tree/DragTree.java

    r5854 r5865  
    256256        }
    257257    }
    258    
     258
    259259    }
    260260
     
    323323    event.acceptDrop(drag_action);
    324324    if(!name.equals(Utility.WORKSPACE_TREE)) {
    325         // Determine what node we dropped over. 
     325        // Determine what node we dropped over.
    326326        Point pt = event.getLocation();
    327327        TreePath target_path = this.getPathForLocation(pt.x, pt.y);
     
    603603    }
    604604    }
    605    
    606     /** returns false for dummy nodes (ones without files), and system root 
     605
     606    /** returns false for dummy nodes (ones without files), and system root
    607607     * nodes */
    608608    private boolean isValidDrag() {
     
    610610    TreePath node_path = getSelectionPath();
    611611    FileNode node = (FileNode) node_path.getLastPathComponent();
    612    
     612
    613613    if (node.getFile() == null) {
    614614        return false;
Note: See TracChangeset for help on using the changeset viewer.