The Trunk: Morphic-dtl.673.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-dtl.673.mcz

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

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

Name: Morphic-dtl.673
Author: dtl
Time: 16 July 2013, 11:47:44.715 pm
UUID: db17b505-2bf9-4e5f-9bd3-a60ed220825a
Ancestors: Morphic-fbs.672

The uiProcess for a Morphic project is terminated on project exit. Clear the reference to the soon-to-be-terminated process.

=============== Diff against Morphic-fbs.672 ===============

Item was changed:
  ----- Method: MorphicProject>>finalExitActions (in category 'enter') -----
  finalExitActions
 
  (world findA: ProjectNavigationMorph)
+ ifNotNil: [:navigator | navigator retractIfAppropriate].
+ uiProcess := nil. "forget the uiProcess that soon will be terminated"!
- ifNotNil: [:navigator | navigator retractIfAppropriate]!