The Trunk: Tools-fbs.454.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-fbs.454.mcz

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

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

Name: Tools-fbs.454
Author: fbs
Time: 8 March 2013, 8:51:56.585 am
UUID: 312e0c5e-4db1-490f-b673-73cf1aa91c06
Ancestors: Tools-fbs.453

Same again, and now Tools has no dependencies on MorphExtension.

=============== Diff against Tools-fbs.453 ===============

Item was changed:
  ----- Method: Inspector>>addCollectionItemsTo: (in category 'menu commands') -----
  addCollectionItemsTo: aMenu
  "If the current selection is an appropriate collection, add items to aMenu that cater to that kind of selection"
 
  | sel |
  ((((sel := self selection) isMemberOf: Array) or: [sel isMemberOf: OrderedCollection]) and:
  [sel size > 0]) ifTrue: [
  aMenu addList: #(
  ('inspect element...' inspectElement))].
 
+ (sel respondsTo: #inspectElement) ifTrue: [
- (sel isKindOf: MorphExtension) ifTrue: [
  aMenu addList: #(
  ('inspect property...' inspectElement))].!