DSVColumnView.st
changeset 2190 9c7777ad9594
parent 2157 6cfdf247519a
child 2209 1d77d3f5c7cb
--- a/DSVColumnView.st	Mon Sep 16 12:41:24 2002 +0200
+++ b/DSVColumnView.st	Mon Sep 16 14:58:14 2002 +0200
@@ -1484,7 +1484,7 @@
     ].
     arg1 := aPara ? what.
     row := (what isNumber) ifTrue:[what] ifFalse:[chgObj].
-    self redrawVisibleRow:row readSelector:arg1.
+    self invalidateVisibleRow:row readSelector:arg1.
 
     "Modified: / 30.1.2000 / 12:16:49 / cg"
 ! !
@@ -1643,14 +1643,13 @@
     ]
 !
 
-redrawVisibleRow:aRow
+invalidateVisibleRow:aRow
     "redraw row if visible
     "
-    self redrawVisibleRow:aRow colAt:0
-
+    self invalidateVisibleRow:aRow colAt:0
 !
 
-redrawVisibleRow:aRow colAt:aColNr
+invalidateVisibleRow:aRow colAt:aColNr
     "redraw either a single column in a row,
      or the complete visible row (in case of aColNr == 0).
      If the row/column is hidden, no redraw is done
@@ -1676,7 +1675,7 @@
     ]
 !
 
-redrawVisibleRow:aRow readSelector:aSelector
+invalidateVisibleRow:aRow readSelector:aSelector
     "redraw a column identified by its read selector; if no column with
      the specified read selector is detected, the whole line is drawn.
     "
@@ -1692,11 +1691,7 @@
             aCol description readSelector == aSelector
         ]
     ].
-    self redrawVisibleRow:aRow colAt:idx
-
-
-
-
+    self invalidateVisibleRow:aRow colAt:idx
 !
 
 redrawX:x y:y width:w height:h
@@ -3640,5 +3635,5 @@
 !DSVColumnView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.144 2002-08-22 16:55:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.145 2002-09-16 12:58:14 penk Exp $'
 ! !