The Trunk: MorphicExtras-tpr.120.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-tpr.120.mcz

commits-2
tim Rowledge uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-tpr.120.mcz

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

Name: MorphicExtras-tpr.120
Author: tpr
Time: 30 September 2013, 4:11:52.606 pm
UUID: 532f584d-ee41-4783-b9eb-ddf00d760fa7
Ancestors: MorphicExtras-nice.119

Change from TextComposer characterForColumnBreak to Character characterForColumnBreak

=============== Diff against MorphicExtras-nice.119 ===============

Item was changed:
  ----- Method: TextPlusMorph>>addColumnBreak (in category 'as yet unclassified') -----
  addColumnBreak
 
  | ed old new break |
 
  ed := self editor.
  old := ed selection.
+ break := Character characterForColumnBreak asString.
- break := TextComposer characterForColumnBreak asString.
  break := Text string: break attributes: {}.
  new := old ,break.
  ed replaceSelectionWith: new.
  self releaseParagraphReally.
  self layoutChanged.
 
  !