The Trunk: 60Deprecated-mt.27.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.27.mcz

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

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

Name: 60Deprecated-mt.27
Author: mt
Time: 2 December 2018, 11:11:20.814325 am
UUID: 0133c524-d990-db4f-8a76-de226601891d
Ancestors: 60Deprecated-pre.26

Deprecations from Morphic-mt.1468

=============== Diff against 60Deprecated-pre.26 ===============

Item was added:
+ ----- Method: BorderedMorph>>setBorderWidth:borderColor: (in category '*60Deprecated-private') -----
+ setBorderWidth: w borderColor: bc
+
+ self deprecated: 'mt: Use #borderStyle: or #borderWidth:/Color: directly.'.
+
+ self borderWidth: w.
+ self borderColor: bc.!

Item was added:
+ ----- Method: BorderedMorph>>setColor:borderWidth:borderColor: (in category '*60Deprecated-private') -----
+ setColor: c borderWidth: w borderColor: bc
+
+ self deprecated: 'mt: Use #borderStyle: or #borderWidth:/Color: directly.'.
+
+ self color: c.
+ self borderWidth: w.
+ self borderColor: bc.!