diff -r 5fe007d2d7d3 -r 9c4c152bb058 WindowEvent.st --- a/WindowEvent.st Mon May 19 21:17:09 2008 +0200 +++ b/WindowEvent.st Mon May 19 21:22:43 2008 +0200 @@ -298,11 +298,11 @@ !WindowEvent class methodsFor:'instance creation'! -buttonMotion:buttonState x:x y:y view:aView +buttonMotion:buttonAndModifierState x:x y:y view:aView ^ (ButtonMotionEvent new) for:aView type:#buttonMotion:x:y: - arguments:(Array with:buttonState with:x with:y) + arguments:(Array with:buttonAndModifierState with:x with:y) ! buttonMultiPress:button x:x y:y view:aView @@ -1529,7 +1529,7 @@ !WindowEvent class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.91 2007-11-09 12:11:22 cg Exp $' + ^ '$Header: /cvs/stx/stx/libview/WindowEvent.st,v 1.92 2008-05-19 19:22:43 cg Exp $' ! ! WindowEvent::InputEvent initialize!