Bert Freudenberg uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-bf.169.mcz==================== Summary ====================
Name: Morphic-bf.169
Author: bf
Time: 6 September 2009, 4:20:54 am
UUID: ec4af925-e9a0-4eab-934b-f3a6ad22ffc9
Ancestors: Morphic-eem.168
- fix PluggableListMorph>>userString which answered an OrderedCollection instead of a String, making "copy text" on a list fail
=============== Diff against Morphic-eem.168 ===============
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 |
+ strm nextPutAll: (self getListItem: i); cr]]!
- ^list!