[etoys-dev] Etoys: Morphic-bf.26.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jun 26 08:28:04 EDT 2010


Bert Freudenberg uploaded a new version of Morphic to project Etoys:
http://source.squeak.org/etoys/Morphic-bf.26.mcz

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

Name: Morphic-bf.26
Author: bf
Time: 26 June 2010, 2:26:21 pm
UUID: 585ebc00-ef95-423f-a27d-bb609b1b3ee1
Ancestors: Morphic-bf.25

- fix copying text from lists (SQ-691)

=============== Diff against Morphic-bf.25 ===============

Item was added:
+ ----- 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 |
+ 			strm nextPutAll: (self getListItem: i); cr]]!

Item was added:
+ ----- 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 |
+ 			strm nextPutAll: (self getListItem: i); cr]]!



More information about the etoys-dev mailing list