The Trunk: Monticello-fbs.568.mcz

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

The Trunk: Monticello-fbs.568.mcz

commits-2
Frank Shearar uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-fbs.568.mcz

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

Name: Monticello-fbs.568
Author: fbs
Time: 14 September 2013, 9:12:26.689 pm
UUID: 27ab67ac-0165-674d-b174-4e5d3af44c11
Ancestors: Monticello-fbs.567

Don't reference Browser. ToolSet permits the user to switch out the basic tools with her own desired set of tools.

=============== Diff against Monticello-fbs.567 ===============

Item was changed:
  ----- Method: MCCodeTool>>browseMethodFull (in category 'menus') -----
  browseMethodFull
  "Create and schedule a full Browser and then select the current class and message, or just the current class if viewing a class definition."
  ^ self selectedClassOrMetaClass ifNotNil: [ :cls |
  self selectedMessageName
+ ifNil: [ToolSet browseClass: cls]
+ ifNotNil: [:sel | ToolSet browse: cls selector: sel]]!
- ifNil: [Browser fullOnClass: cls]
- ifNotNil: [:sel | Browser fullOnClass: cls selector: sel]]!