'From Squeakland 3.8.5976 of 25 August 2004 [latest update: #308] on 4 September 2004 at 7:17:26 pm'! "Change Set: TwoMoreDoubleInitFixes-nk Date: 3 September 2004 Author: Ned Konz Fixes a double initialize in ParagraphEditor and Scamper. "! !ParagraphEditor class methodsFor: 'instance creation' stamp: 'nk 9/3/2004 14:10'! new "Answer a new instance of me with a null Paragraph to be edited." | aParagraphEditor | aParagraphEditor _ super new. aParagraphEditor changeParagraph: '' asParagraph. ^aParagraphEditor! !