AbstractFileApplicationNoteBookComponent.st
branchjv
changeset 17220 324f16278da6
parent 16213 f667b5b42a11
parent 17201 dcbb7ce3c3da
--- a/AbstractFileApplicationNoteBookComponent.st	Thu Dec 29 00:19:01 2016 +0000
+++ b/AbstractFileApplicationNoteBookComponent.st	Sun Jan 01 21:47:39 2017 +0000
@@ -168,15 +168,17 @@
 doStartDrag:aDropSource in:aView
     "common code, used in subclasses"
 
-    |hdl|
-
-    hdl := DragAndDropManager new.
-
-    hdl disabledCursor:AbstractFileBrowser disabledCursorImage.
-    hdl enabledCursor:AbstractFileBrowser enabledCursorImage.
-    hdl alienCursor:nil.
-
-    hdl startDragFrom:aView dropSource:aDropSource offset:#topLeft
+    AbstractFileBrowser doStartDrag:aDropSource in:aView
+"/ same code    
+"/    |hdl|
+"/
+"/    hdl := DragAndDropManager new.
+"/
+"/    hdl disabledCursor:AbstractFileBrowser disabledCursorIcon.
+"/    hdl enabledCursor:AbstractFileBrowser enabledCursorIcon.
+"/    hdl alienCursor:nil.
+"/
+"/    hdl startDragFrom:aView dropSource:aDropSource offset:#topLeft
 ! !
 
 !AbstractFileApplicationNoteBookComponent methodsFor:'queries'!