[squeak-dev] The Trunk: MorphicExtras-tpr.120.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Sep 30 23:13:09 UTC 2013


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.
  
  !



More information about the Squeak-dev mailing list