The Trunk: MorphicExtras-kfr.237.mcz

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

The Trunk: MorphicExtras-kfr.237.mcz

commits-2
Karl Ramberg uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-kfr.237.mcz

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

Name: MorphicExtras-kfr.237
Author: kfr
Time: 31 May 2018, 8:38:11.47978 pm
UUID: cd5f12e9-d70d-0848-875e-69d68177210f
Ancestors: MorphicExtras-mt.236

Moved some conversion up from TextMorph to TextPlusMorph

=============== Diff against MorphicExtras-mt.236 ===============

Item was added:
+ ----- Method: TextPlusMorph>>convertToCurrentVersion:refStream: (in category 'objects from disk') -----
+ convertToCurrentVersion: varDict refStream: smartRefStrm
+ "Fix up misaligned entries from varDict in old project"
+ varDict at: 'slotName' ifPresent: [ :x | text:= x]. "Not sure why the text is in 'slotName'"
+ varDict at: 'model' ifPresent: [ :x | textStyle:= x]."Or why textStyle is in 'model'"
+ self releaseParagraphReally.
+ ^ super convertToCurrentVersion: varDict refStream: smartRefStrm.
+
+ !