The Trunk: ST80-dtl.65.mcz

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

The Trunk: ST80-dtl.65.mcz

commits-2
David T. Lewis uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-dtl.65.mcz

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

Name: ST80-dtl.65
Author: dtl
Time: 11 November 2009, 10:14:32 am
UUID: 9ec4eaac-47af-4c13-8ab5-35d2d8c64f3a
Ancestors: ST80-dtl.64

Factor Project>>saveState into MVCProject and MorphicProject.

=============== Diff against ST80-dtl.64 ===============

Item was added:
+ ----- Method: MVCProject>>saveState (in category 'enter') -----
+ saveState
+ "Save the current state in me prior to leaving this project"
+
+ changeSet := ChangeSet current.
+ thumbnail ifNotNil: [thumbnail hibernate].
+ world := ScheduledControllers.
+ ScheduledControllers unCacheWindows.
+ Sensor flushAllButDandDEvents. "Will be reinstalled by World>>install"
+ transcript := Transcript
+ !