WindowEvent.st
changeset 4459 8b13d9f5d3b5
parent 4458 9289b34fcea3
child 4461 adecf2db552f
--- a/WindowEvent.st	Tue Jan 10 13:41:19 2006 +0100
+++ b/WindowEvent.st	Tue Jan 10 13:47:52 2006 +0100
@@ -354,14 +354,14 @@
         type:#destroyed
 !
 
-dropFiles:files view:view position:dropPositionOrNil dropHandle:dropHandleOrNil
-    ^ self dropMessage:#files data:files view:view position:dropPositionOrNil dropHandle:dropHandleOrNil
+dropFiles:files view:view position:dropPositionOrNil handle:dropHandleOrNil
+    ^ self dropMessage:#files data:files view:view position:dropPositionOrNil handle:dropHandleOrNil
 !
 
-dropMessage:dropTypeSymbol data:dropValue view:aView position:positionOrNil dropHandle:dropHandleOrNil
+dropMessage:dropTypeSymbol data:dropValue view:aView position:positionOrNil handle:dropHandleOrNil
     ^ DropEvent 
           for:aView
-          type:#dropMessage:data:position:dropHandle
+          type:#dropMessage:data:position:handle
           arguments:(Array with:dropTypeSymbol with:dropValue with:positionOrNil with:dropHandleOrNil)
 !
 
@@ -1435,7 +1435,7 @@
 !WindowEvent class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.83 2006-01-10 12:40:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.84 2006-01-10 12:47:44 cg Exp $'
 ! !
 
 WindowEvent::InputEvent initialize!