The Trunk: Monticello-fbs.544.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.544.mcz

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

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

Name: Monticello-fbs.544
Author: fbs
Time: 21 May 2013, 10:47:59.43 pm
UUID: 899c9c9d-88e8-4e33-abf1-148f2857b42f
Ancestors: Monticello-ul.543

MethodReference new setStandardClass: foo methodSymbol: bar -> MethodReference class: foo selector: bar.

=============== Diff against Monticello-ul.543 ===============

Item was changed:
  ----- Method: MCCodeTool>>openSingleMessageBrowser (in category 'menus') -----
  openSingleMessageBrowser
  | msgName mr |
  "Create and schedule a message list browser populated only by the currently selected message"
 
  (msgName := self selectedMessageName) ifNil: [^ self].
 
+ mr := MethodReference
+ class: self selectedClassOrMetaClass
+ selector: msgName.
- mr := MethodReference new
- setStandardClass: self selectedClassOrMetaClass
- methodSymbol: msgName.
 
  self systemNavigation
  browseMessageList: (Array with: mr)
  name: mr asStringOrText
  autoSelect: nil!