[squeak-dev] The Trunk: Morphic-bf.166.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Sep 3 10:34:29 UTC 2009


Bert Freudenberg uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-bf.166.mcz

==================== Summary ====================

Name: Morphic-bf.166
Author: bf
Time: 3 September 2009, 12:33 pm
UUID: 69b11373-12d3-4d77-8056-7a465e0b681e
Ancestors: Morphic-ar.165

Fix typo from UIManager refactoring

=============== Diff against Morphic-ar.165 ===============

Item was changed:
  ----- Method: FileList>>selectEncoding (in category 'private') -----
  selectEncoding
  
  	| encodingItems |
  	encodingItems := OrderedCollection new.
  	TextConverter allSubclasses do: [:each | | names |
  		names := each encodingNames.
  		names notEmpty ifTrue: [ | label |
  			label := '' writeStream.
  			names do: [:eachName | label nextPutAll: eachName ] separatedBy: [ label nextPutAll: ', '].
  			encodingItems add: {label contents. names first asSymbol}.
  		].
  	].
  	brevityState := UIManager default
+ 		chooseFrom: (encodingItems collect: [:spec| spec first])
+ 		values: (encodingItems collect: [:spec| spec last]).
- 		chooseFrom: (encodingItems select:[:spec| spec first])
- 		values: (encodingItems select:[:spec| spec last]).
  	brevityState ifNil: [brevityState := #needToGetBrief].
  !




More information about the Squeak-dev mailing list