class: MenuEditor
authorClaus Gittinger <cg@exept.de>
Wed, 05 Mar 2014 23:18:43 +0100
changeset 3095 f7491ef4bcf0
parent 3094 57d90e5e6605
child 3096 e3de9d8ad4ec
class: MenuEditor use asMutator instead of (a,':') asSymbol
MenuEditor.st
--- a/MenuEditor.st	Wed Mar 05 23:17:16 2014 +0100
+++ b/MenuEditor.st	Wed Mar 05 23:18:43 2014 +0100
@@ -3717,7 +3717,7 @@
 
     aKey == #rawLabel       ifTrue:[ ^ self rawLabel:aValue ].
     aKey == #submenuChannel ifTrue:[ ^ self ].
-    menuItem perform:((aKey, ':') asSymbol) with:aValue.
+    menuItem perform:(aKey asMutator) with:aValue.
 
     "Modified: / 05-09-2006 / 17:47:19 / cg"
 !