DebugView.st
changeset 2177 48cf132c539f
parent 2175 f6792ce44e98
child 2258 4c9000113db6
--- a/DebugView.st	Fri Jun 04 09:35:05 1999 +0200
+++ b/DebugView.st	Mon Jun 07 17:19:23 1999 +0200
@@ -3815,6 +3815,12 @@
                     codeView contents:nil.
                 ]
             ] ifFalse:[
+                lineNrInMethod == 0 ifTrue:[
+                    (method notNil and:[method isJavaMethod]) ifTrue:[
+                        lineNrInMethod := method lineNumber
+                    ]
+                ].
+
                 UserPreferences current syntaxColoring ifTrue:[
                     implementorClass notNil ifTrue:[
                         (highlighter := implementorClass syntaxHighlighterClass) notNil ifTrue:[
@@ -3924,6 +3930,6 @@
 !DebugView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.227 1999-05-31 13:31:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.228 1999-06-07 15:19:23 cg Exp $'
 ! !
 DebugView initialize!