The Trunk: Graphics-nice.201.mcz

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

The Trunk: Graphics-nice.201.mcz

commits-2
Nicolas Cellier uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-nice.201.mcz

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

Name: Graphics-nice.201
Author: nice
Time: 3 March 2013, 2:55:46.667 pm
UUID: 885a2f90-92a9-4eca-8767-54ce2ce2254e
Ancestors: Graphics-nice.200

Remove #printOnStream: #storeOnStream: and #propertyListOn:.

=============== Diff against Graphics-nice.200 ===============

Item was removed:
- ----- Method: Bitmap>>printOnStream: (in category 'printing') -----
- printOnStream: aStream
-
- aStream print: 'a Bitmap of length '; write:self size.
- !

Item was removed:
- ----- Method: Rectangle>>propertyListOn: (in category 'printing') -----
- propertyListOn: aStream
- " {x=a; y=b; width=c; height=d} "
- aStream print:'{ x='; write:origin x;
- print:' y='; write:origin y;
- print:' width='; write:self extent x;
- print:' height='; write:self extent y;
- print:'};'.
- !