WindowEvent.st
changeset 5020 f8ba55bc9b95
parent 5000 e0ec909988e9
child 5201 fd4bf9d73cac
--- a/WindowEvent.st	Wed Jul 23 15:46:55 2008 +0200
+++ b/WindowEvent.st	Wed Jul 23 15:47:03 2008 +0200
@@ -349,13 +349,13 @@
          arguments:(Array with:x with:y with:w with:h)
 !
 
-copyDataEvent:type eventData:data view:aView
+copyDataEvent:parameter eventData:data view:aView
     "this one is only used with Win32"
 
     ^ ClientEvent
          for:aView
          type:#copyDataEvent:eventData:
-         arguments:(Array with:type with:data)
+         arguments:(Array with:parameter with:data)
 !
 
 coveredBy:coveringSiblingView view:coveredView
@@ -1603,7 +1603,7 @@
 !WindowEvent class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.96 2008-07-22 15:30:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.97 2008-07-23 13:47:03 cg Exp $'
 ! !
 
 WindowEvent::InputEvent initialize!