#OTHER by stefan
authorStefan Vogel <sv@exept.de>
Sat, 01 Oct 2016 20:39:19 +0200
changeset 3752 42375c1cc0e9
parent 3750 73f907f202bc
child 3753 621928f70187
child 3754 c6a86012772b
#OTHER by stefan Use #() instead of Array new and #[] instead of ByteArray new
Menu.st
--- a/Menu.st	Wed Sep 28 13:20:15 2016 +0200
+++ b/Menu.st	Sat Oct 01 20:39:19 2016 +0200
@@ -315,7 +315,7 @@
 
     |lines groupSz|
 
-    (groupSz := groupSizes size) <= 1 ifTrue: [^ Array new].
+    (groupSz := groupSizes size) <= 1 ifTrue: [^ #()].
     lines := Array new:(groupSz - 1).
     lines at:1 put:groupSizes first.
     2 to:(groupSz-1) do:[:i |
@@ -1300,6 +1300,6 @@
 !Menu class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/Menu.st,v 1.94 2015-03-13 16:20:41 cg Exp $'
+    ^ '$Header$'
 ! !