The Trunk: MorphicTests-dtl.43.mcz

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

The Trunk: MorphicTests-dtl.43.mcz

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

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

Name: MorphicTests-dtl.43
Author: dtl
Time: 13 November 2017, 8:55:25.971745 pm
UUID: 668f9891-fbaa-4aa6-ad4b-28aff8fab813
Ancestors: MorphicTests-tpr.42

Remove unnecessary reference to global World.

=============== Diff against MorphicTests-tpr.42 ===============

Item was changed:
  ----- Method: MorphicUIManagerTest>>findWindowInWorldLabeled: (in category 'private') -----
  findWindowInWorldLabeled: aLabel
  "Look in the world and in the hand for windows. Yes, windows may spawn in the hand."
+ | world |
+ world := Project current world.
+ ^ world submorphs, (world hands gather: [:hand | hand submorphs])
-
- ^ World submorphs, (World hands gather: [:hand | hand submorphs])
  detect: [ :each |
  each isSystemWindow
  and: [ each label = aLabel ] ]
  ifNone: [].!