The Trunk: Tools-kfr.596.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-kfr.596.mcz

commits-2
Karl Ramberg uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-kfr.596.mcz

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

Name: Tools-kfr.596
Author: kfr
Time: 17 April 2015, 4:44:59.179 pm
UUID: e66d06f0-bf08-104e-9ba1-5228cfe9fbb6
Ancestors: Tools-mt.595

typo

=============== Diff against Tools-mt.595 ===============

Item was changed:
  ----- Method: DictionaryInspector>>mainFieldListMenu: (in category 'menu') -----
  mainFieldListMenu: aMenu
 
  ^ aMenu addList: #(
  ('inspect' inspectSelection)
  ('inspect key' inspectKey)
  ('copy name' copyName)
  ('references' selectionReferences)
  ('objects pointing to this value' objectReferencesToSelection)
  ('senders of this key' sendersOfSelectedKey)
  -
  ('refresh view' refreshView)
  ('add key' addEntry)
  ('rename key' renameEntry)
  -
  ('remove' removeSelection)
+ ('basic inspect' inspectBasic));
- ('basifc inspect' inspectBasic));
  yourself
  !