[squeak-dev] The Trunk: MorphicTests-dtl.43.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Nov 14 01:55:33 UTC 2017


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: [].!



More information about the Squeak-dev mailing list