The Trunk: ST80-nice.91.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-nice.91.mcz

commits-2
Nicolas Cellier uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-nice.91.mcz

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

Name: ST80-nice.91
Author: nice
Time: 4 February 2010, 9:12:49.224 pm
UUID: 01ef2658-f309-4eed-984c-c8f069478167
Ancestors: ST80-dtl.90

remove some now useless fixTemps

=============== Diff against ST80-dtl.90 ===============

Item was changed:
  ----- Method: Switch>>offAction: (in category 'action') -----
  offAction: anAction
  "Set the off action of the receiver to anAction."
 
+ offAction := anAction!
- offAction := anAction fixTemps!

Item was changed:
  ----- Method: Switch>>onAction: (in category 'action') -----
  onAction: anAction
  "Set the on action of the receiver to anAction."
 
+ onAction := anAction!
- onAction := anAction fixTemps!

Item was changed:
  ----- Method: MVCProject>>scheduleProcessForEnter: (in category 'enter') -----
  scheduleProcessForEnter: showZoom
  "Complete the enter: by launching a new process"
 
  | newProcess |
  SystemWindow clearTopWindow. "break external ref to this project"
  newProcess := [
  ScheduledControllers resetActiveController. "in case of walkback in #restore"
  showZoom ifFalse: [ScheduledControllers restore].
  ScheduledControllers searchForActiveController
+ ] newProcess priority: Processor userSchedulingPriority.
- ] fixTemps newProcess priority: Processor userSchedulingPriority.
  newProcess resume. "lose the current process and its referenced morphs"
  Processor terminateActive
  !