use decodeFromLiteralArray
authorClaus Gittinger <cg@exept.de>
Tue, 27 Mar 2007 11:18:33 +0200
changeset 3221 af3fae427c7e
parent 3220 02154432a13e
child 3222 828febe4d844
use decodeFromLiteralArray
SelectionInListModelView.st
--- a/SelectionInListModelView.st	Tue Mar 27 11:18:12 2007 +0200
+++ b/SelectionInListModelView.st	Tue Mar 27 11:18:33 2007 +0200
@@ -1242,7 +1242,7 @@
 
             menu notNil ifTrue:[
                 menu isCollection ifTrue:[
-                    menu := Menu new fromLiteralArrayEncoding:menu.
+                    menu := Menu decodeFromLiteralArray:menu.
                     appl := self application.
 
                     appl notNil ifTrue:[
@@ -1339,6 +1339,8 @@
             ].
         ].
     ].
+
+    "Modified: / 27-03-2007 / 08:43:58 / cg"
 !
 
 buttonPressOrReleaseAtLine:aLnNr x:x y:y
@@ -2412,5 +2414,5 @@
 !SelectionInListModelView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInListModelView.st,v 1.120 2007-03-13 15:16:38 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInListModelView.st,v 1.121 2007-03-27 09:18:33 cg Exp $'
 ! !