'From Squeak3.1alpha of 5 February 2001 [latest update: #3666] on 19 February 2001 at 9:27:25 pm'! "Change Set: FixTextUpdate Date: 19 February 2001 Author: Dan Ingalls Restore ability of test to recompose when its owner changes. "! !TextMorph methodsFor: 'containment' stamp: 'di 2/19/2001 21:26'! ownerChanged | priorEditor | super ownerChanged. container ifNotNil: [editor == nil ifTrue: [self releaseParagraph] ifFalse: [priorEditor _ editor. self releaseParagraph. self installEditorToReplace: priorEditor]]! !