#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Tue, 31 Jul 2018 23:57:34 +0200
changeset 6387 5197892cbb8b
parent 6386 0ccfd6c3c75f
child 6388 53127d6b215f
#BUGFIX by cg class: ListView changed: #drawLine:inVisible:from:to:with:and:
ListView.st
--- a/ListView.st	Sat Jul 28 12:03:17 2018 +0200
+++ b/ListView.st	Tue Jul 31 23:57:34 2018 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -2163,7 +2161,7 @@
             ].
             w > 0 ifTrue:[
                 self clippedTo:(Rectangle left:x top:yf width:w height:fontHeight) do:[
-                    gc drawVisibleLine:visLineNr with:fg and:bg.
+                    self drawVisibleLine:visLineNr with:fg and:bg.
                 ].
                 checkedLinesForWidthOfContentsComputation == 0 ifTrue:[
                     self updateWidthOfWidestLineFor:characterString
@@ -2226,7 +2224,8 @@
         ]
     ]
 
-    "Modified: / 15.12.1999 / 23:21:43 / cg"
+    "Modified: / 15-12-1999 / 23:21:43 / cg"
+    "Modified: / 31-07-2018 / 23:54:51 / Claus Gittinger"
 !
 
 drawLine:lineString inVisible:visLineNr from:startCol with:fg and:bg