class: ListView
authorClaus Gittinger <cg@exept.de>
Thu, 03 Jul 2014 18:36:28 +0200
changeset 5090 ed3edaf6714f
parent 5089 aa031b6af2be
child 5091 f69c39e3dc9e
class: ListView changed: #widthOfContents
ListView.st
--- a/ListView.st	Thu Jul 03 18:09:52 2014 +0200
+++ b/ListView.st	Thu Jul 03 18:36:28 2014 +0200
@@ -3665,7 +3665,7 @@
                 start to:stop do:[:lineNr |
                     |line len|
 
-                    line := list at:lineNr.
+                    line := list at:lineNr ifAbsent:nil.
                     line notNil ifTrue:[
                         len := line size.
                         "/ consider this a speed hack (not exact, but fast)
@@ -5301,10 +5301,10 @@
 !ListView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.396 2014-06-26 15:36:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.397 2014-07-03 16:36:28 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.396 2014-06-26 15:36:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.397 2014-07-03 16:36:28 cg Exp $'
 ! !