Skip to content
Snippets Groups Projects
Commit a9820d4f authored by Aaron Kennedy's avatar Aaron Kennedy
Browse files

Compile

parent 5c6cfdf8
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,7 @@ public:
const QVariant &argument = QVariant());
void messageReceived(const QByteArray &);
void enabledChanged(bool);
void statusChanged(Status);
public slots:
// void pauses();
......
......@@ -511,10 +511,10 @@ void JSDebuggerAgent::continueExec()
loop.quit();
}
void JSDebuggerAgent::enabledChanged(bool on)
void JSDebuggerAgent::statusChanged(Status status)
{
engine()->setAgent(on ? this : 0);
QDeclarativeDebugService::enabledChanged(on);
engine()->setAgent(status == Enabled ? this : 0);
QDeclarativeDebugService::statusChanged(status);
}
} // namespace QmlJSDebugger
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment