changed #doDrop:
authorClaus Gittinger <cg@exept.de>
Fri, 12 Jan 2007 18:42:24 +0100
changeset 7586 fdeb89d217b2
parent 7585 bde2b712a79a
child 7587 2d163faa64d6
changed #doDrop:
AbstractDirectoryBrowser.st
--- a/AbstractDirectoryBrowser.st	Fri Jan 12 18:42:17 2007 +0100
+++ b/AbstractDirectoryBrowser.st	Fri Jan 12 18:42:24 2007 +0100
@@ -68,7 +68,7 @@
 
     self dropLeave:aContext.
 
-    destinationPath ifNil:[^ self].
+    destinationPath isNil ifTrue:[^ self].
 
     aContext dropSource argument == #archivApplication ifTrue:[
         receiver := aContext dropSource receiver.
@@ -209,5 +209,5 @@
 !AbstractDirectoryBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractDirectoryBrowser.st,v 1.22 2006-10-16 16:59:58 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractDirectoryBrowser.st,v 1.23 2007-01-12 17:42:24 cg Exp $'
 ! !