Eliot Miranda uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-eem.317.mcz==================== Summary ====================
Name: Graphics-eem.317
Author: eem
Time: 2 September 2015, 6:29:23.818 pm
UUID: 93cbbfd8-00b5-48d8-9ef6-174661f41fa7
Ancestors: Graphics-topa.316
Remove carriage returns from some time stamps
=============== Diff against Graphics-topa.316 ===============
Item was changed:
----- Method: HostWindowProxy class>>isActiveHostWindowProxyClass (in category 'system startup') -----
isActiveHostWindowProxyClass
"subclasses must override this"
self subclassResponsibility!
Item was changed:
----- Method: HostWindowProxy class>>on: (in category 'initialize-release') -----
on: aSourceForm
"Build a new window proxy by finding the appropriate platform specific subclass
and setting it up for this Form-like argument"
^ActiveProxyClass new on: aSourceForm!
Item was changed:
----- Method: ImageReadWriter class>>putForm:onStream: (in category 'image reading/writing') -----
putForm: aForm onStream: aWriteStream
"Store the given form on a file of the given name."
| writer |
writer := self on: aWriteStream.
Cursor write showWhile: [writer nextPutImage: aForm].
writer close.
!