UIPainter.st
changeset 1953 3b5022bccca4
parent 1950 aaf6499564ba
child 1954 1344ec1f99eb
--- a/UIPainter.st	Mon Jan 09 11:38:28 2006 +0100
+++ b/UIPainter.st	Tue Jan 10 14:32:38 2006 +0100
@@ -4753,16 +4753,16 @@
 
 !UIPainter::TreeView methodsFor:'drag & drop'!
 
-canDrop:anObjectOrCollection
-    "can drop ? delegate to canvas"
-
-    ^ self canvas canDrop:anObjectOrCollection
+canDrop:aCollectionOfDropObjects
+    "can drop ? -> delegate to canvas"
+
+    ^ self canvas canDrop:aCollectionOfDropObjects
 !
 
-drop:anObjectOrCollection at:aPoint
-    "drop objects ? delegate to canvas"
-
-    self canvas drop:anObjectOrCollection at:aPoint
+drop:aCollectionOfDropObjects at:aPoint
+    "drop objects -> delegate to canvas"
+
+    self canvas drop:aCollectionOfDropObjects at:aPoint
 ! !
 
 !UIPainter::TreeView methodsFor:'enumerating'!