list attribute changed from OrderedCollection to List
authorClaus Gittinger <cg@exept.de>
Sun, 11 Oct 1998 12:30:26 +0200
changeset 1166 d062a52bc7cc
parent 1165 b375b5831e74
child 1167 4451606328d2
list attribute changed from OrderedCollection to List can be dependent on list
SelInTree.st
SelectionInTree.st
--- a/SelInTree.st	Fri Oct 09 16:16:34 1998 +0200
+++ b/SelInTree.st	Sun Oct 11 12:30:26 1998 +0200
@@ -504,10 +504,11 @@
 
 initialize
 
-    showRoot := true.
+    showRoot      := true.
     indicatorList := OrderedCollection new.
     accessLock    := Semaphore forMutualExclusion.
-    list          := OrderedCollection new:128.
+    list          := List new.
+
     super initialize.
 
 ! !
@@ -813,5 +814,5 @@
 !SelectionInTree class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/Attic/SelInTree.st,v 1.17 1998-09-28 09:58:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/Attic/SelInTree.st,v 1.18 1998-10-11 10:30:26 cg Exp $'
 ! !
--- a/SelectionInTree.st	Fri Oct 09 16:16:34 1998 +0200
+++ b/SelectionInTree.st	Sun Oct 11 12:30:26 1998 +0200
@@ -504,10 +504,11 @@
 
 initialize
 
-    showRoot := true.
+    showRoot      := true.
     indicatorList := OrderedCollection new.
     accessLock    := Semaphore forMutualExclusion.
-    list          := OrderedCollection new:128.
+    list          := List new.
+
     super initialize.
 
 ! !
@@ -813,5 +814,5 @@
 !SelectionInTree class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInTree.st,v 1.17 1998-09-28 09:58:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInTree.st,v 1.18 1998-10-11 10:30:26 cg Exp $'
 ! !