The Trunk: ST80-mt.197.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-mt.197.mcz

commits-2
Marcel Taeumel uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-mt.197.mcz

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

Name: ST80-mt.197
Author: mt
Time: 18 February 2016, 4:15:12.588199 pm
UUID: c86bdc79-be18-46c9-b7c4-abe9f2cc7928
Ancestors: ST80-mt.196

Move some MVC code to ST80.

=============== Diff against ST80-mt.196 ===============

Item was added:
+ ----- Method: ControlManager>>emergencyCollapse (in category 'private') -----
+ emergencyCollapse
+
+ self screenController emergencyCollapse.!

Item was added:
+ ----- Method: PasteUpMorph>>standardSystemController (in category '*ST80-Support') -----
+ standardSystemController
+ ^ScheduledControllers controllerSatisfying:
+ [:c |
+ c view subViews notEmpty and: [c view firstSubView model == self]]!

Item was added:
+ ----- Method: Utilities class>>emergencyCollapse (in category '*ST80-Support') -----
+ emergencyCollapse
+
+ Project current world emergencyCollapse.!