Andreas Raab uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-ar.85.mcz==================== Summary ====================
Name: ST80-ar.85
Author: ar
Time: 19 January 2010, 8:36:12.999 pm
UUID: 9528e414-a7b5-9945-aba9-fc692c14e094
Ancestors: ST80-mha.84
Allow changing the text of a PluggableText from the model using 'self changed: #editString with: aString'.
=============== Diff against ST80-mha.84 ===============
Item was added:
+ ----- Method: PluggableTextView>>update:with: (in category 'updating') -----
+ update: aSymbol with: arg1
+ aSymbol == #editString ifTrue:[
+ self editString: arg1.
+ ^self hasUnacceptedEdits: true.
+ ].
+ ^super update: aSymbol with: arg1!