#OTHER by stefan
authorStefan Vogel <sv@exept.de>
Fri, 30 Sep 2016 16:47:21 +0200
changeset 3328 cf9aa47cccc6
parent 3327 dd50ec5f3c86
child 3329 a5fcdace63ba
#OTHER by stefan Use (*WriteStream on:'') instead of (*WriteStream on:String new)
MenuEditor.st
--- a/MenuEditor.st	Fri Sep 30 16:45:36 2016 +0200
+++ b/MenuEditor.st	Fri Sep 30 16:47:21 2016 +0200
@@ -2482,7 +2482,7 @@
     menu := self generateMenuSpecFor:aMenuItem.
     menu isNil ifTrue:[^ nil].
 
-    specStream := WriteStream on:String new.
+    specStream := WriteStream on:''.
     UISpecification prettyPrintSpecArray:menu on:specStream indent:5.
     ^ specStream contents.
 !