The Trunk: Tools-eem.800.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Tools-eem.800.mcz

commits-2
Eliot Miranda uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-eem.800.mcz

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

Name: Tools-eem.800
Author: eem
Time: 14 March 2018, 1:26:31.899555 pm
UUID: ef0a6927-db4f-4904-8604-9b23c32852f1
Ancestors: Tools-topa.799

Make local senders of... meaningful in MessageSets (e.g. Recent Submissions) when no method is selected, so that one can filter within a list browser.

=============== Diff against Tools-topa.799 ===============

Item was added:
+ ----- Method: MessageSet>>browseLocalSendersOfMessages (in category 'message functions') -----
+ browseLocalSendersOfMessages
+ "Override so that if no method is selected it searches for senders local to the current list."
+
+ self selectedClass ifNotNil:
+ [^super browseLocalSendersOfMessages].
+
+ self getSelectorAndSendQuery: #value:value:
+ to: [:literal :label|
+ self systemNavigation browseAllCallsOn: literal fromMethodReferences: messageList labelled: label]
+ with: { 'messages' }!