MenuView.st
changeset 2975 8c344257ef67
parent 2973 cb5ac87985c9
child 3153 499fc16c974a
--- a/MenuView.st	Wed May 12 12:58:22 2004 +0200
+++ b/MenuView.st	Thu May 13 11:34:25 2004 +0200
@@ -2365,7 +2365,7 @@
 !
 
 labelWithoutDoubleAmpersands:label
-    (label includesString:'&&') ifFalse:[ ^ label].
+    (label isNil or:[(label includesString:'&&') not]) ifTrue:[ ^ label].
     ^ label replString:'&&' withString:'&'    
 !
 
@@ -3094,5 +3094,5 @@
 !MenuView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/MenuView.st,v 1.148 2004-05-12 09:58:17 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/MenuView.st,v 1.149 2004-05-13 09:34:25 cg Exp $'
 ! !