editorType list should not be a set
authorClaus Gittinger <cg@exept.de>
Tue, 08 Apr 2003 11:43:21 +0200
changeset 1699 e68392bc2d52
parent 1698 28250498a2b3
child 1700 0d1a8ef95754
editorType list should not be a set
DataSetBuilder.st
--- a/DataSetBuilder.st	Thu Apr 03 19:12:31 2003 +0200
+++ b/DataSetBuilder.st	Tue Apr 08 11:43:21 2003 +0200
@@ -2085,6 +2085,7 @@
 
     (list := builder bindingAt:#editorTypeList) isNil ifTrue:[
         list := (DataSetColumnSpec slices collect:[:eachSlice | eachSlice at:1]) asSet.
+        list := list asOrderedCollection sort:[:a :b | a name < b name].
         builder aspectAt:#editorTypeList put:list
     ].
     ^list