The Trunk: 60Deprecated-mt.12.mcz

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

The Trunk: 60Deprecated-mt.12.mcz

commits-2
Marcel Taeumel uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-mt.12.mcz

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

Name: 60Deprecated-mt.12
Author: mt
Time: 29 March 2018, 2:38:37.422957 pm
UUID: 90b410a3-4c46-894a-b994-967911ba8abd
Ancestors: 60Deprecated-eem.11

Deprecate *Colorized: messages because of the newer Form >> #dyed: message.

=============== Diff against 60Deprecated-eem.11 ===============

Item was added:
+ ----- Method: MenuIcons class>>checkBoxOffColorized: (in category '*60Deprecated') -----
+ checkBoxOffColorized: aColor
+
+ self deprecated: 'Use Form >> #dyed: to dye forms.'.
+ ^ self checkBoxOff dyed: aColor!

Item was added:
+ ----- Method: MenuIcons class>>checkBoxOnColorized: (in category '*60Deprecated') -----
+ checkBoxOnColorized: aColor
+
+ self deprecated: 'Use Form >> #dyed: to dye forms.'.
+ ^ self checkBoxOn dyed: aColor!

Item was added:
+ ----- Method: MenuIcons class>>checkBoxPressedColorized: (in category '*60Deprecated') -----
+ checkBoxPressedColorized: aColor
+
+ self deprecated: 'Use Form >> #dyed: to dye forms.'.
+ ^ self checkBoxPressed dyed: aColor!

Item was added:
+ ----- Method: MenuIcons class>>fullscreenWireframeIconColorized: (in category '*60Deprecated') -----
+ fullscreenWireframeIconColorized: aColor
+
+ self deprecated: 'Use Form >> #dyed: to dye forms.'.
+ ^ self fullscreenWireframeIcon dyed: aColor!

Item was added:
+ ----- Method: MenuIcons class>>radioButtonOffColorized: (in category '*60Deprecated') -----
+ radioButtonOffColorized: aColor
+
+ self deprecated: 'Use Form >> #dyed: to dye forms.'.
+ ^ self radioButtonOff dyed: aColor!

Item was added:
+ ----- Method: MenuIcons class>>radioButtonOnColorized: (in category '*60Deprecated') -----
+ radioButtonOnColorized: aColor
+
+ self deprecated: 'Use Form >> #dyed: to dye forms.'.
+ ^ self radioButtonOn dyed: aColor!

Item was added:
+ ----- Method: MenuIcons class>>radioButtonPressedColorized: (in category '*60Deprecated') -----
+ radioButtonPressedColorized: aColor
+
+ self deprecated: 'Use Form >> #dyed: to dye forms.'.
+ ^ self radioButtonPressed dyed: aColor!

Item was added:
+ ----- Method: MenuIcons class>>squeakLogoIconColorized: (in category '*60Deprecated') -----
+ squeakLogoIconColorized: aColor
+
+ self deprecated: 'Use Form >> #dyed: to dye forms.'.
+ ^ self squeakLogoIcon dyed: aColor!

Item was added:
+ ----- Method: MenuIcons class>>subMenuMarkerColorized: (in category '*60Deprecated') -----
+ subMenuMarkerColorized: aColor
+
+ self deprecated: 'Use Form >> #dyed: to dye forms.'.
+ ^ self subMenuMarker dyed: aColor!