The Trunk: Tools-eem.471.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.471.mcz

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

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

Name: Tools-eem.471
Author: eem
Time: 14 June 2013, 1:55:19.221 pm
UUID: f14f2736-5c49-41d5-ab67-fddee7e61176
Ancestors: Tools-fbs.470

Update multi-window browser switching now browsers no
longer use integer indices, and instead use the relevant
symbols themselves.

=============== Diff against Tools-fbs.470 ===============

Item was changed:
  ----- Method: Browser>>restoreToCategory:className:protocol:selector:mode:meta: (in category 'multi-window support') -----
  restoreToCategory: category className: className protocol: protocol selector: selector mode: editMode meta: metaBool
+ selectedSystemCategory := nil. "forces recomputation in selectSystemCategory:"
  self selectSystemCategory: category.
+ self selectClassNamed: className.
- self classListIndex: (self classListIndexOf: className).
  self metaClassIndicated: metaBool.
+ self selectMessageCategoryNamed: protocol.
+ self selectMessageNamed: selector.
- self messageCategoryListIndex: (self messageCategoryList indexOf: protocol).
- self messageListIndex: (self messageList indexOf: selector).
  editSelection := editMode.
  self
  contentsChanged;
  decorateButtons!