[squeak-dev] The Trunk: ToolBuilder-MVC-mt.70.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jan 18 16:09:40 UTC 2023


Marcel Taeumel uploaded a new version of ToolBuilder-MVC to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-MVC-mt.70.mcz

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

Name: ToolBuilder-MVC-mt.70
Author: mt
Time: 18 January 2023, 5:09:39.669866 pm
UUID: c18105de-f2e5-1647-99fa-854d34c0dc3a
Ancestors: ToolBuilder-MVC-mt.69

*** Debugger Refactoring - Step 3 of 2 ***

Remove and/or deprecate the old interface.

=============== Diff against ToolBuilder-MVC-mt.69 ===============

Item was removed:
- ----- Method: MVCToolBuilder>>openDebugger: (in category 'opening') -----
- openDebugger: anObject
- 	"Build and open the object. Answer the widget opened."
- 	| window |
- 	window := self build: anObject.
- 	window controller openNoTerminate.
- 	^window!

Item was removed:
- ----- Method: MVCToolBuilder>>openDebugger:label: (in category 'opening') -----
- openDebugger: anObject label: aString
- 	"Build an open the object, labeling it appropriately.  Answer the widget opened."
- 	| window |
- 	window := self build: anObject.
- 	window label: aString.
- 	window controller openNoTerminate.
- 	^window!

Item was removed:
- ----- Method: MVCToolBuilder>>openDebugger:label:closing: (in category 'opening') -----
- openDebugger: anObject label: aString closing: topView
- 	"Build an open the object, labeling it appropriately.  Answer the widget opened."
- 	| window |
- 	topView controller controlTerminate.
- 	topView deEmphasize; erase.
- 
- 	"a few hacks to get the scroll selection artifacts out when we got here by clicking in the list"
- "	topView subViewWantingControl ifNotNil: [
- 		topView subViewWantingControl controller controlTerminate
- 	]."
- 	topView controller status: #closed.
- 	window := self build: anObject.
- 	window label: aString.
- 	window controller openNoTerminate.
- 	topView controller closeAndUnscheduleNoErase.
- 	Processor terminateActive.
- 	^window!



More information about the Squeak-dev mailing list