SelectionInListView.st
changeset 6103 8e5af0e7851e
parent 6073 511a25603e1c
child 6168 02556ee274e9
--- a/SelectionInListView.st	Mon Feb 13 20:49:11 2017 +0100
+++ b/SelectionInListView.st	Mon Feb 13 20:49:12 2017 +0100
@@ -3539,32 +3539,38 @@
 
 redrawVisibleLine:visLineNr col:colNr
     "redraw a single character.
-     Must check, if its in the selection and handle this case."
+     Must check, if it's in the selection and handle this case."
 
     (self visibleLineNeedsSpecialCare:visLineNr) ifTrue:[
-	^ self redrawVisibleLine:visLineNr
+        ^ self redrawVisibleLine:visLineNr
     ].
     super redrawVisibleLine:visLineNr col:colNr
+
+    "Modified (comment): / 13-02-2017 / 20:30:07 / cg"
 !
 
 redrawVisibleLine:visLineNr from:startCol
     "redraw from a col to the right end.
-     Must check, if its in the selection and handle this case."
+     Must check, if it's in the selection and handle this case."
 
     (self visibleLineNeedsSpecialCare:visLineNr) ifTrue:[
-	^ self redrawVisibleLine:visLineNr
+        ^ self redrawVisibleLine:visLineNr
     ].
     super redrawVisibleLine:visLineNr from:startCol
+
+    "Modified (comment): / 13-02-2017 / 20:30:10 / cg"
 !
 
 redrawVisibleLine:visLineNr from:startCol to:endCol
     "redraw from a startCol to endCol.
-     Must check, if its in the selection and handle this case."
+     Must check, if it's in the selection and handle this case."
 
     (self visibleLineNeedsSpecialCare:visLineNr) ifTrue:[
-	^ self redrawVisibleLine:visLineNr
+        ^ self redrawVisibleLine:visLineNr
     ].
     super redrawVisibleLine:visLineNr from:startCol to:endCol
+
+    "Modified (comment): / 13-02-2017 / 20:30:13 / cg"
 ! !
 
 !SelectionInListView methodsFor:'selections'!