code cleanup
authorClaus Gittinger <cg@exept.de>
Fri, 13 Oct 2006 11:57:56 +0200
changeset 7402 a0d38bb3a02e
parent 7401 39a82f0e1dde
child 7403 73712386ea82
code cleanup
AbstractDirectoryBrowser.st
--- a/AbstractDirectoryBrowser.st	Fri Oct 13 11:49:10 2006 +0200
+++ b/AbstractDirectoryBrowser.st	Fri Oct 13 11:57:56 2006 +0200
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libtool' }"
 
 AbstractFileBrowser subclass:#AbstractDirectoryBrowser
@@ -56,8 +55,10 @@
 
 !AbstractDirectoryBrowser methodsFor:'drag & drop'!
 
-canDrop:aContext
+canDrop:aDropContext
     ^ inDropMode and:[canDropItem]
+
+    "Modified: / 13-10-2006 / 11:35:09 / cg"
 !
 
 doDrop:aContext 
@@ -208,5 +209,5 @@
 !AbstractDirectoryBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractDirectoryBrowser.st,v 1.19 2006-02-21 12:18:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractDirectoryBrowser.st,v 1.20 2006-10-13 09:57:56 cg Exp $'
 ! !