The Trunk: Morphic-ar.309.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Morphic-ar.309.mcz

commits-2
Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ar.309.mcz

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

Name: Morphic-ar.309
Author: ar
Time: 19 January 2010, 8:34:36.16 pm
UUID: a5ff860a-d548-8648-a7af-756d55ef5347
Ancestors: Morphic-nice.308

Allow changing the text of a PluggableText from the model using 'self changed: #editString with: aString'.

=============== Diff against Morphic-nice.308 ===============

Item was added:
+ ----- Method: PluggableTextMorph>>update:with: (in category 'updating') -----
+ update: aSymbol with: arg1
+ aSymbol == #editString ifTrue:[
+ self editString: arg1.
+ self hasUnacceptedEdits: true.
+ ].
+ ^super update: aSymbol with: arg1!