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

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

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

Name: Tools-kfr.656
Author: kfr
Time: 23 November 2015, 11:34:24.394 pm
UUID: 0ece22f7-03af-4926-b071-bbb3dec38d64
Ancestors: Tools-kfr.655

Might as well get the comment right on this one....

=============== Diff against Tools-kfr.655 ===============

Item was changed:
  ----- Method: Browser>>browseAllCommentsForClass (in category 'message functions') -----
  browseAllCommentsForClass
+ "Opens a HelpBrowser on the class"
- "Inspect all instances of the selected class.  1/26/96 sw"
 
  | myClass |
  ((myClass := self selectedClassOrMetaClass) isNil or: [myClass isTrait])
  ifFalse: [HelpBrowser openOn: myClass theNonMetaClass]
  !