# HG changeset patch # User Claus Gittinger # Date 1049795001 -7200 # Node ID e68392bc2d5206493ba12d48745e4c1d6bae0183 # Parent 28250498a2b3ab81ab677549f35ebe34be191100 editorType list should not be a set diff -r 28250498a2b3 -r e68392bc2d52 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