org.chromium.debug.core/src/org/chromium/debug/core/model/StackFrame.java
changeset 115 d367ed1b2991
parent 52 f577ea64429e
child 276 f2f4a1259de8
--- a/org.chromium.debug.core/src/org/chromium/debug/core/model/StackFrame.java	Mon Feb 08 15:20:59 2010 -0800
+++ b/org.chromium.debug.core/src/org/chromium/debug/core/model/StackFrame.java	Tue Feb 09 10:49:02 2010 -0800
@@ -195,7 +195,7 @@
 
   public int getLineNumber() throws DebugException {
     // convert 0-based to 1-based
-    return stackFrame.getLineNumber() + 1;
+    return getDebugTarget().getLineNumber(stackFrame);
   }
 
   public int getCharStart() throws DebugException {