The Trunk: Morphic-ar.299.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.299.mcz

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

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

Name: Morphic-ar.299
Author: ar
Time: 6 January 2010, 10:34:30 am
UUID: ba809289-e18c-264b-a997-88cf835003ac
Ancestors: Morphic-ar.298

Move lastKeystroke back into Morphic.

=============== Diff against Morphic-ar.298 ===============

Item was added:
+ ----- Method: PasteUpMorph>>lastKeystroke: (in category 'accessing') -----
+ lastKeystroke: aString
+ "Remember the last keystroke fielded by the receiver"
+
+ ^ self setProperty: #lastKeystroke toValue: aString!

Item was added:
+ ----- Method: PasteUpMorph>>lastKeystroke (in category 'accessing') -----
+ lastKeystroke
+ "Answer the last keystroke fielded by the receiver"
+
+ ^ self valueOfProperty: #lastKeystroke ifAbsent: ['']!