David T. Lewis uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-dtl.103.mcz==================== Summary ====================
Name: Graphics-dtl.103
Author: dtl
Time: 9 February 2010, 11:19:15.257 pm
UUID: eae5dfcb-3f25-4c56-bbf7-cd91f3e59d70
Ancestors: Graphics-dtl.102
Move #asParagraph methods to package *ST80-Support.
=============== Diff against Graphics-dtl.102 ===============
Item was removed:
- ----- Method: DisplayText>>asParagraph (in category 'converting') -----
- asParagraph
- "Answer a Paragraph whose text and style are identical to that of the
- receiver."
- | para |
- para := Paragraph withText: text style: textStyle.
- para foregroundColor: foreColor backgroundColor: backColor.
- backColor isTransparent ifTrue: [para rule: Form paint].
- ^ para!