# HG changeset patch # User Claus Gittinger # Date 1394057923 -3600 # Node ID f7491ef4bcf04453ec87cd89341f51cfd0006c6b # Parent 57d90e5e6605e48c1f78efd750ea8d5702f105bd class: MenuEditor use asMutator instead of (a,':') asSymbol diff -r 57d90e5e6605 -r f7491ef4bcf0 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" !