debugger: fix run to line

Was aiming at the current line, not the selected one.
This commit is contained in:
hjk
2010-12-13 16:58:09 +01:00
parent 5bcf849ee5
commit d17cd56744

View File

@@ -1205,7 +1205,7 @@ public slots:
int lineNumber;
quint64 address;
if (positionFromActionData(sender(), &fileName, &lineNumber, &address))
handleExecRunToLine();
currentEngine()->executeRunToLine(fileName, lineNumber);
}
void slotJumpToLine()