DSVColumnView.st
changeset 3757 05d3a8228fdd
parent 3742 a4bb22bc79e2
child 3770 e24ada279c5e
--- a/DSVColumnView.st	Tue Sep 29 21:32:09 2009 +0200
+++ b/DSVColumnView.st	Mon Oct 05 16:07:10 2009 +0200
@@ -992,7 +992,7 @@
 
     |row|
 
-    (row := list at:aRowNr) isNil ifTrue:[
+    (row := list at:aRowNr ifAbsent:nil) isNil ifTrue:[
         lockRowIndex := aRowNr.
 
         (rowIfAbsentBlock notNil
@@ -4559,5 +4559,9 @@
 !DSVColumnView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.249 2009-09-15 19:01:50 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.250 2009-10-05 14:07:10 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.250 2009-10-05 14:07:10 cg Exp $'
 ! !