#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Thu, 28 Dec 2017 19:17:26 +0100
changeset 4037 eecd873be684
parent 4036 05c32a3bb82e
child 4038 95870c29b6b4
#BUGFIX by stefan class: MenuItem changed: #findGuiResourcesIn:rememberResourcesIn: fix DNU introduced in 1.115
MenuItem.st
--- a/MenuItem.st	Fri Dec 22 16:38:54 2017 +0100
+++ b/MenuItem.st	Thu Dec 28 19:17:26 2017 +0100
@@ -909,7 +909,7 @@
                         in:aResourceContainerOrApplication
                         rememberResourcesIn:aValueHolderOrNil.
     ].
-    (label includesString:'%(') ifTrue:[
+    (label notNil and:[label includesString:'%(']) ifTrue:[
         |fetchDict|
 
         fetchDict := VirtualDictionary new.
@@ -931,7 +931,8 @@
         ]
     ]
 
-    "Modified: / 18.6.1998 / 16:54:25 / cg"
+    "Modified: / 18-06-1998 / 16:54:25 / cg"
+    "Modified: / 28-12-2017 / 18:36:31 / stefan"
 !
 
 receiver:aReceiver perform:aSelector with:anArgument ifNone:aBlock