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

commits at source.squeak.org commits at source.squeak.org
Mon Jan 24 10:56:28 UTC 2022


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

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

Name: ToolBuilder-MVC-mt.64
Author: mt
Time: 24 January 2022, 11:56:27.036852 am
UUID: 6d6f6c45-8c3c-a74a-aa5f-e4c999aafd11
Ancestors: ToolBuilder-MVC-mt.63

Avoid side-effects when initializing a workspace for edit-string operations. We might want to add a class-side constructor for that...

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

Item was changed:
  ----- Method: MVCUIManager>>edit:label:accept: (in category 'ui requests') -----
  edit: aText label: labelString accept: anAction
  	"Open an editor on the given string/text"
  
  	Workspace new
+ 		contents: aText;
- 		acceptContents: aText;
  		acceptAction: anAction;
  		openLabel: labelString
  !



More information about the Squeak-dev mailing list