changed #allowDrop:
authorClaus Gittinger <cg@exept.de>
Fri, 12 Jan 2007 18:41:00 +0100
changeset 3439 3bdadf887895
parent 3438 d83030fd5005
child 3440 1d0f8a8503b8
changed #allowDrop:
EditTextView.st
--- a/EditTextView.st	Fri Jan 12 18:38:27 2007 +0100
+++ b/EditTextView.st	Fri Jan 12 18:41:00 2007 +0100
@@ -2290,7 +2290,7 @@
     aBoolean ifFalse:[
         dropTarget := nil.
     ] ifTrue:[
-        dropTarget ifNil:[
+        dropTarget isNil ifTrue:[
             dropTarget := DropTarget receiver:self
                               argument:nil
                           dropSelector:#'drop:'
@@ -7067,5 +7067,5 @@
 !EditTextView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.409 2006-11-29 10:33:29 fm Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.410 2007-01-12 17:41:00 cg Exp $'
 ! !