[squeak-dev] The Trunk: Tools-jr.893.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Nov 26 08:01:29 UTC 2019


Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-jr.893.mcz

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

Name: Tools-jr.893
Author: jr
Time: 20 September 2019, 9:37:14.292454 pm
UUID: ff30360f-3e9b-d449-a2ee-a7644407fe27
Ancestors: Tools-mt.892

Allow to remove all selected methods from current ChangeSet in MessageTrace.

Previously, only the viewed message was removed.

=============== Diff against Tools-mt.892 ===============

Item was added:
+ ----- Method: MessageTrace>>removeFromCurrentChanges (in category '*Tools') -----
+ removeFromCurrentChanges
+ 	"Tell the changes mgr to forget that the selected messages were changed."
+ 
+ 	self selectedMessages do: [:each |
+ 		each setClassAndSelectorIn: [:class :selector |
+ 			ChangeSet current removeSelectorChanges: selector class: class]].
+ 	self changed: #annotation!



More information about the Squeak-dev mailing list