The Trunk: 51Deprecated-topa.5.mcz

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

The Trunk: 51Deprecated-topa.5.mcz

commits-2
Tobias Pape uploaded a new version of 51Deprecated to project The Trunk:
http://source.squeak.org/trunk/51Deprecated-topa.5.mcz

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

Name: 51Deprecated-topa.5
Author: topa
Time: 8 October 2015, 8:52:58.154 pm
UUID: 568871f9-a278-4917-9499-41dd92bdf907
Ancestors: 51Deprecated-topa.4

Move already deprecated messages to their penultimate place

=============== Diff against 51Deprecated-topa.4 ===============

Item was added:
+ ----- Method: Preferences class>>allPreferenceObjects (in category '*51Deprecated-accessing') -----
+ allPreferenceObjects
+ "Answer a list of all the Preference objects registered in the system"
+
+ self deprecated: 'Use #allPreferences since all preferences are objects.'.
+ ^ self allPreferences!

Item was added:
+ ----- Method: Preferences class>>togglePreference: (in category '*51Deprecated-get/set - flags') -----
+ togglePreference: flagName
+
+ self deprecated: 'Use #toggle:'.
+ ^ self toggle: flagName.!