HierarchicalListView.st
changeset 5862 5f4e2a48ca5e
parent 5858 3d7eef6e0069
child 6002 06e059b4d6f9
--- a/HierarchicalListView.st	Mon Jul 30 17:19:20 2018 +0200
+++ b/HierarchicalListView.st	Mon Jul 30 17:21:31 2018 +0200
@@ -952,7 +952,7 @@
     "/ take care, list may change while drawing (GUIBrowser when connection goes away!!)
     list synchronized:[
         list from:start to:(stop min:list size) do:[:eachItem|
-            self drawVericalLineForElement:eachItem minX:xL maxX:xR.
+            self drawVerticalLineForElement:eachItem minX:xL maxX:xR.
         ].
         item notNil ifTrue:[
             [ (item := item parent) notNil ] whileTrue:[
@@ -1010,8 +1010,8 @@
     self mask:nil.
 
     "Modified: / 03-12-2010 / 19:28:23 / cg"
-    "Modified (comment): / 23-07-2018 / 19:32:06 / Stefan Vogel"
     "Modified: / 29-07-2018 / 19:12:22 / Claus Gittinger"
+    "Modified: / 30-07-2018 / 15:43:28 / Stefan Vogel"
 !
 
 drawVericalLineForElement:item minX:xL maxX:xR