The Trunk: System-mt.788.mcz

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

The Trunk: System-mt.788.mcz

commits-2
Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.788.mcz

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

Name: System-mt.788
Author: mt
Time: 22 January 2016, 2:25:42.237541 pm
UUID: d8e842ad-39e5-4d38-a0b5-45d7692143a0
Ancestors: System-eem.787

Add support for browsing message categories to toolsets.

=============== Diff against System-eem.787 ===============

Item was added:
+ ----- Method: ToolSet class>>browseClass:category: (in category 'browsing') -----
+ browseClass: aClass category: aCategory
+ "Open a browser"
+ self default ifNil:[^self inform: 'Cannot open Browser'].
+ ^self default browseClass: aClass category: aCategory!

Item was added:
+ ----- Method: ToolSet class>>browseMessageCategory:inClass: (in category 'browsing') -----
+ browseMessageCategory: aCategory inClass: aClass
+ "Open a message category browser."
+ self default ifNil:[^self inform: 'Cannot open Browser'].
+ ^self default browseMessageCategory: aCategory inClass: aClass!