refactored intention revealing code:
authorClaus Gittinger <cg@exept.de>
Thu, 14 Apr 2005 11:12:10 +0200
changeset 3153 499fc16c974a
parent 3152 6d8fe02a5fe3
child 3154 42bf7ebd54c8
refactored intention revealing code: ... not ifTrue: -> ... ifFalse:
MenuView.st
--- a/MenuView.st	Wed Apr 13 11:42:22 2005 +0200
+++ b/MenuView.st	Thu Apr 14 11:12:10 2005 +0200
@@ -1990,7 +1990,7 @@
     superMenu notNil ifTrue:[
         hide := hideOnRelease.
         hide ifFalse:[
-            superMenu shown not ifTrue:[
+            superMenu shown ifFalse:[
                 superView notNil ifTrue:[
                     superView shown ifTrue:[
                         hide := true
@@ -3094,5 +3094,5 @@
 !MenuView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/MenuView.st,v 1.149 2004-05-13 09:34:25 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/MenuView.st,v 1.150 2005-04-14 09:12:10 cg Exp $'
 ! !