[Pkg] The Trunk: Morphic-bf.552.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jun 25 11:43:09 UTC 2011


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

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

Name: Morphic-bf.552
Author: bf
Time: 25 June 2011, 1:42:08.074 pm
UUID: 813fe1f0-64a5-467f-81b0-19260375959d
Ancestors: Morphic-cmm.551

fix userString for lists

=============== Diff against Morphic-cmm.551 ===============

Item was changed:
  ----- Method: LazyListMorph>>userString (in category 'accessing') -----
  userString
  	"Do I have a text string to be searched on?"
  
  	^ String streamContents: [:strm |
  		1 to: self getListSize do: [:i |
+ 			"must use asStringOrText because that's what the drawing uses, too"
+ 			strm nextPutAll: (self getListItem: i) asStringOrText; cr]]!
- 			strm nextPutAll: (self getListItem: i); cr]]!

Item was changed:
  ----- Method: PluggableListMorph>>userString (in category 'debug and other') -----
  userString
  	"Do I have a text string to be searched on?"
  
  	^ String streamContents: [:strm |
  		1 to: self getListSize do: [:i |
+ 			"must use asStringOrText because that's what the drawing uses, too"
+ 			strm nextPutAll: (self getListItem: i) asStringOrText; cr]]!
- 			strm nextPutAll: (self getListItem: i); cr]]!



More information about the Packages mailing list