[squeak-dev] The Trunk: Morphic-ar.298.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jan 5 09:23:33 UTC 2010


Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ar.298.mcz

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

Name: Morphic-ar.298
Author: ar
Time: 5 January 2010, 10:23 am
UUID: 4658fd62-f685-9543-880c-fdc2911289c6
Ancestors: Morphic-dtl.297

More unloading work: Avoid references to TestRunner, move an Etoys method to Etoys.

=============== Diff against Morphic-dtl.297 ===============

Item was changed:
  ----- Method: TheWorldMenu>>makeConvenient: (in category 'construction') -----
  makeConvenient: menu
  	self
  		fillIn: menu
  		from: {
  			{ 'Browser'. { StandardToolSet. #openClassBrowser }. 'open a browser' }.
  			{ 'Workspace'. { Workspace. #open }. 'open a workspace' }.
  			{ 'Transcript'. { Transcript. #open }. 'open a transcript' }.
+ 			Smalltalk at: #TestRunner ifPresent:[:aClass|
+ 				{ 'Test Runner'. { aClass. #open }. 'open a test runner' }.
+ 			].
- 			{ 'Test Runner'. { TestRunner. #open }. 'open a test runner' }.
  			nil
  		}!

Item was changed:
  ----- Method: TheWorldMainDockingBar>>testRunnerMenuItemOn: (in category 'submenu - tools') -----
  testRunnerMenuItemOn: menu
+ 	Smalltalk at: #TestRunner ifPresent:[:aClass|
+ 		menu addItem: [ :item |
+ 			item
+ 				contents: 'Test Runner' translated;
+ 				help: 'Open the Test Runner' translated;
+ 				icon: (self colorIcon: aClass basicNew defaultBackgroundColor);
+ 				target: aClass;
+ 				selector: #open ]
+ 	].!
- 
- 	menu addItem: [ :item |
- 		item
- 			contents: 'Test Runner' translated;
- 			help: 'Open the Test Runner' translated;
- 			icon: (self colorIcon: TestRunner basicNew defaultBackgroundColor);
- 			target: TestRunner;
- 			selector: #open ]!

Item was removed:
- ----- Method: Morph>>handMeTilesToFire (in category 'debug and other') -----
- handMeTilesToFire 
- 	"Construct a phrase of tiles comprising a line of code that will 'fire' this object, and hand it to the user"
- 
- 	ActiveHand attachMorph: (self assuredPlayer tilesToCall: MethodInterface firingInterface)!




More information about the Squeak-dev mailing list