DragAndDropManager.st
changeset 1718 7da6bd953eb9
parent 1689 5aae4c617ffd
child 1749 1f58fbcd4b96
--- a/DragAndDropManager.st	Tue Mar 18 19:22:08 2003 +0100
+++ b/DragAndDropManager.st	Wed Mar 19 11:06:54 2003 +0100
@@ -804,21 +804,21 @@
 !DragAndDropManager methodsFor:'dragging-drop source'!
 
 startDragFrom:aView dropSource:aDropSource
-    "start a drop at the current pointer position.
+    "start a drag at the current pointer position.
     "
     ^ self startDragFrom:aView dropSource:aDropSource offset:#topLeft "/ #center
 !
 
 startDragFrom:aView dropSource:aDropSource offset:anOffset
-    "start a drop at the current pointer position.
+    "start a drag at the current pointer position.
     "
     dropContext dropSource:aDropSource.
 
     ^ self startDrag:(aDropSource dropObjects)
-		from:aView
-	      offset:anOffset
-	       atEnd:nil
-	     display:(aDropSource displayObjects)
+                from:aView
+              offset:anOffset
+               atEnd:nil
+             display:(aDropSource displayObjects)
 ! !
 
 !DragAndDropManager methodsFor:'dragging-easy startup'!
@@ -1427,7 +1427,7 @@
 !DragAndDropManager class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/DragAndDropManager.st,v 1.48 2003-01-24 16:34:07 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/DragAndDropManager.st,v 1.49 2003-03-19 10:06:54 cg Exp $'
 ! !
 
 DragAndDropManager initialize!