[squeak-dev] The Inbox: Tools-ct.947.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Feb 24 15:03:45 UTC 2020


Christoph Thiede uploaded a new version of Tools to project The Inbox:
http://source.squeak.org/inbox/Tools-ct.947.mcz

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

Name: Tools-ct.947
Author: ct
Time: 24 February 2020, 4:03:40.987226 pm
UUID: 5470ec6c-dec3-8c42-b73b-3b6a4a831d53
Ancestors: Tools-mt.940

Proposal: If no message is selected in a browser, browse senders of class name instead

=============== Diff against Tools-mt.940 ===============

Item was added:
+ ----- Method: Browser>>getSelectorAndSendQuery:to:with: (in category 'as yet unclassified') -----
+ getSelectorAndSendQuery: querySelector to: queryPerformer with: queryArgs
+ 
+ 	(querySelector = #browseAllCallsOn: and: [self selectedMessageName isNil] and: [self selectedClassName notNil])
+ 		ifTrue: [^ queryPerformer perform: querySelector withArguments: {self selectedClassName}].
+ 	^ super
+ 		getSelectorAndSendQuery: querySelector
+ 		to: queryPerformer
+ 		with: queryArgs!



More information about the Squeak-dev mailing list