MultiSelectionInList.st
changeset 129 a0728fb8d54e
parent 114 5d736ee65276
child 166 ad76f0f28698
--- a/MultiSelectionInList.st	Wed May 17 14:26:27 1995 +0200
+++ b/MultiSelectionInList.st	Fri May 19 18:41:01 1995 +0200
@@ -4,7 +4,7 @@
 	 instanceVariableNames:''
 	 classVariableNames:''
 	 poolDictionaries:''
-	 category:'Interface-Framework'
+	 category:'Interface-Support-Models'
 !
 
 !MultiSelectionInList methodsFor:'selections'!
@@ -15,7 +15,7 @@
     selectionIndices := indexHolder value.
     (selectionIndices isNil 
     or:[selectionIndices isEmpty]) ifFalse:[
-        ^ selectionIndices collect:[:index | listHolder value at:index]
+	^ selectionIndices collect:[:index | listHolder value at:index]
     ].
     ^ #()
 ! !