QmlDebugging: Fix Regression

Fix Run to Line functionality. Regresseion was introduced by
fd82e54a5b

Change-Id: Ie2d3eb3d0df7ba73950c4d3c70ab25b9e7f7ab36
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
This commit is contained in:
Aurindam Jana
2012-03-01 09:00:07 +01:00
parent 6f0fa5114d
commit 45b806564d

View File

@@ -1055,7 +1055,7 @@ void QmlV8DebuggerClient::executeStepI()
void QmlV8DebuggerClient::executeRunToLine(const ContextData &data)
{
d->setBreakpoint(QString(_(SCRIPTREGEXP)), data.fileName,
data.lineNumber);
true, data.lineNumber);
clearExceptionSelection();
d->continueDebugging(Continue);
}