changed: #highlightLine:fromLine:col:toLine:col:
authorfm
Mon, 28 Sep 2009 11:08:21 +0200
changeset 8795 b0d57ce3cbc0
parent 8794 59ab103964f9
child 8796 a5d75f2e4068
changed: #highlightLine:fromLine:col:toLine:col:
Tools__NewSystemBrowserCodeView.st
--- a/Tools__NewSystemBrowserCodeView.st	Sun Sep 27 11:49:24 2009 +0200
+++ b/Tools__NewSystemBrowserCodeView.st	Mon Sep 28 11:08:21 2009 +0200
@@ -13,7 +13,7 @@
 !NewSystemBrowserCodeView class methodsFor:'documentation'!
 
 version_SVN
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowserCodeView.st,v 1.1 2009-09-23 17:00:52 fm Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowserCodeView.st,v 1.2 2009-09-28 09:08:21 fm Exp $'
 ! !
 
 !NewSystemBrowserCodeView class methodsFor:'initialization'!
@@ -706,7 +706,7 @@
     line := self listAt: lineNo.
     start := lineNo = startLine 
                 ifTrue:[startCol]
-                ifFalse:[line indexOfFirstNonBlankCharacter].
+                ifFalse:[line indexOfSeparator].
     end := lineNo = endLine
                 ifTrue:[endCol]
                 ifFalse:[line size].
@@ -908,7 +908,7 @@
 !NewSystemBrowserCodeView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowserCodeView.st,v 1.1 2009-09-23 17:00:52 fm Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__NewSystemBrowserCodeView.st,v 1.2 2009-09-28 09:08:21 fm Exp $'
 ! !
 
 NewSystemBrowserCodeView initialize!