[squeak-dev] The Trunk: Tools-tpr.1014.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Oct 30 18:35:48 UTC 2020


tim Rowledge uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-tpr.1014.mcz

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

Name: Tools-tpr.1014
Author: tpr
Time: 30 October 2020, 11:35:44.264054 am
UUID: 5649c88a-0205-4ae7-abc7-f0b420348d4a
Ancestors: Tools-mt.1013

Yet a nother tiny bit of collateral damage fro mwhacking the MessageSet classes - the flaps related build of the RecentMessageSet was not getting a window label. Somehow the odler version was simply dragging in the class name, which wasn't really very helpful anyway.
This updates it to have the same name as the 'norammly opened variety.
There is probably some more refactoring that could be done.

=============== Diff against Tools-mt.1013 ===============

Item was changed:
  ----- Method: Utilities class>>recentSubmissionsWindow (in category '*Tools') -----
  recentSubmissionsWindow
  	"Answer a SystemWindow holding recent submissions"
  	| messageSet |
  	messageSet := RecentMessageSet messageList: RecentMessages default methodReferences.
+ 	messageSet
+ 		autoSelectString: nil;
+ 		setInitialLabel: 'Recent Submissions'.
- 	messageSet autoSelectString: nil.
  	^ ToolBuilder build: messageSet!



More information about the Squeak-dev mailing list