Marcel Taeumel uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-mt.9.mcz==================== Summary ====================
Name: 60Deprecated-mt.9
Author: mt
Time: 25 January 2018, 8:15:11.91705 am
UUID: a9bdcc14-c4e8-724a-9f8b-0c567d49570c
Ancestors: 60Deprecated-dtl.8
Restores an old message for editing strings that was removed but never deprecated.
=============== Diff against 60Deprecated-dtl.8 ===============
Item was added:
+ ----- Method: String>>openInWorkspaceWithTitle: (in category '*60Deprecated-user interface') -----
+ 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.!