The Trunk: HelpSystem-Core-cmm.79.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: HelpSystem-Core-cmm.79.mcz

commits-2
Chris Muller uploaded a new version of HelpSystem-Core to project The Trunk:
http://source.squeak.org/trunk/HelpSystem-Core-cmm.79.mcz

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

Name: HelpSystem-Core-cmm.79
Author: cmm
Time: 16 October 2015, 11:43:24.324 am
UUID: f5505d86-1b5b-488c-9819-42e9142d64a9
Ancestors: HelpSystem-Core-mt.78

Allow HelpBrowsers to honor the Reuse Windows preference.

=============== Diff against HelpSystem-Core-mt.78 ===============

Item was changed:
  ----- Method: HelpBrowser class>>openOn: (in category 'instance creation') -----
  openOn: aHelpTopic
          "Open the receiver on the given help topic or any other object that can be transformed into
           a help topic by sending #asHelpTopic."
         
          ^(self defaultHelpBrowser new)
+                 rootTopic: aHelpTopic;
+                 open;
+                 yourself!
- open;
- rootTopic: aHelpTopic;
- yourself!