# HG changeset patch # User Claus Gittinger # Date 901711241 -7200 # Node ID 32fafd49c100d719aa99e8b3c316eaacf1a6d32c # Parent 0a5799408f54fdf021e47afc812b29f346fff087 load and saveImageFileNameFilters must return an orderedCollection (for #add to work) diff -r 0a5799408f54 -r 32fafd49c100 FileSelectionBrowser.st --- a/FileSelectionBrowser.st Wed Jul 29 01:12:22 1998 +0200 +++ b/FileSelectionBrowser.st Wed Jul 29 13:20:41 1998 +0200 @@ -123,8 +123,9 @@ !FileSelectionBrowser class methodsFor:'accessing'! loadImageFileNameFilters - ^self saveImageFileNameFilters addAll: #('*.jpeg' '*.jpg'); yourself + ^self saveImageFileNameFilters addAll: #('*.jpeg' '*.jpg' '*'); yourself + "Modified: / 29.7.1998 / 00:56:29 / cg" ! projectFileNameFilters @@ -133,8 +134,9 @@ ! saveImageFileNameFilters - ^Array withAll: #('*.xpm' '*.xbm' '*.gif' '*.tif' '*.tiff' '*.bmp') + ^ OrderedCollection withAll: #('*.xpm' '*.xbm' '*.gif' '*.tif' '*.tiff' '*.bmp') + "Modified: / 29.7.1998 / 00:55:14 / cg" ! ! !FileSelectionBrowser class methodsFor:'interface specs'!