*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 21 Aug 1997 23:53:50 +0200
changeset 1309 79f46c196e3e
parent 1308 61d944600e3f
child 1310 bd6ad7f1fda9
*** empty log message ***
ListView.st
--- a/ListView.st	Tue Aug 19 17:03:34 1997 +0200
+++ b/ListView.st	Thu Aug 21 23:53:50 1997 +0200
@@ -1815,7 +1815,9 @@
         "/ for now, we do not support variable height entries ...
         el := list first.
         el isNil ifTrue:[
-            list findFirst:[:e | e notNil ifTrue:[el := e. true] ifFalse:false].
+            list findFirst:[:e | e notNil 
+				    ifTrue:[el := e. true] 
+				    ifFalse:[false]].
         ].
         el isNil ifTrue:[
             fontHeight := font height. "/ maxHeight.
@@ -3681,5 +3683,5 @@
 !ListView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.138 1997-08-11 11:59:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/ListView.st,v 1.139 1997-08-21 21:53:50 cg Exp $'
 ! !