EditTextView.st
changeset 6232 787d471436e3
parent 6230 db7708cf8cdb
child 6241 ca8af4b44137
--- a/EditTextView.st	Sun Nov 19 15:05:32 2017 +0100
+++ b/EditTextView.st	Mon Nov 20 20:44:02 2017 +0100
@@ -4536,7 +4536,7 @@
 basicDeleteCharsAtLine:lineNr fromCol:startCol toCol:endCol
     "delete characters from startCol to endCol in line lineNr"
 
-    |line lineSize newLine start stop 
+    |line lineSize newLine start stop
      prevWidth newWidth newCol|
 
     self unselect.
@@ -4589,7 +4589,7 @@
             "/ avoids slow delete with huge texts.
             widthOfWidestLine := nil.   "i.e. unknown"
 
-            "/ scroll left if reqiured
+            "/ scroll left if required
             viewOrigin x > 0 ifTrue:[
                 newWidth := self widthOfLine:lineNr.
                 newWidth < (viewOrigin x + width) ifTrue:[
@@ -4611,6 +4611,7 @@
     ].
 
     "Modified: / 09-11-2010 / 13:42:45 / cg"
+    "Modified (format): / 20-11-2017 / 20:17:55 / mawalch"
 !
 
 basicDeleteFromLine:startLineNr toLine:endLineNr