The Trunk: 45Deprecated-fbs.1.mcz

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

The Trunk: 45Deprecated-fbs.1.mcz

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

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

Name: 45Deprecated-fbs.1
Author: fbs
Time: 8 March 2013, 12:37:56.401 pm
UUID: 1e452820-3b70-432a-b372-71d6aa0dac7c
Ancestors:

Use `UIManager default edit: 'foo' title: 'bar'` instead of `'foo' openInWorkspaceWithTitle: 'bar'`.

This method needlessly causes a dependency between Collections and Toolbuilder-Kernel.

==================== Snapshot ====================

----- Method: String>>openInWorkspaceWithTitle: (in category '*45Deprecated') -----
openInWorkspaceWithTitle: aTitle
        "Open up a workspace with the receiver as its contents, with the given title"
        self deprecated: 'Use UIManager >> #edit:label'.
        UIManager default edit: self label: aTitle!