# HG changeset patch # User Claus Gittinger # Date 1404405388 -7200 # Node ID ed3edaf6714fab267ef204bd0a965e728e94feba # Parent aa031b6af2be8b098ace96ae9a8085d415ac8dca class: ListView changed: #widthOfContents diff -r aa031b6af2be -r ed3edaf6714f 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 $' ! !