code cleanup (arg-names)
authorClaus Gittinger <cg@exept.de>
Mon, 19 May 2008 21:16:53 +0200
changeset 2473 66754ea64440
parent 2472 882f7468e7f0
child 2474 ef24105ee7a2
code cleanup (arg-names)
ActiveHelp.st
--- a/ActiveHelp.st	Mon May 19 19:27:00 2008 +0200
+++ b/ActiveHelp.st	Mon May 19 21:16:53 2008 +0200
@@ -352,10 +352,10 @@
 
 !ActiveHelp methodsFor:'event handling'!
 
-buttonMotion:state x:x y:y view:aView
+buttonMotion:buttonAndModifierState x:x y:y view:aView
     "handle motion events - prepare to show help"
 
-    state == 0 ifTrue:[
+    buttonAndModifierState == 0 ifTrue:[
         self handleMouseIn:aView x:x y:y.
     ].
     ^ false
@@ -720,7 +720,7 @@
 !ActiveHelp class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.60 2008-02-26 10:25:51 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ActiveHelp.st,v 1.61 2008-05-19 19:16:53 cg Exp $'
 ! !
 
 ActiveHelp initialize!