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

Revert "Compile"

This reverts commit a9820d4f.
parent a9820d4f
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 statusChanged(Status);
void enabledChanged(bool);
public slots:
// void pauses();
......
......@@ -511,10 +511,10 @@ void JSDebuggerAgent::continueExec()
loop.quit();
}
void JSDebuggerAgent::statusChanged(Status status)
void JSDebuggerAgent::enabledChanged(bool on)
{
engine()->setAgent(status == Enabled ? this : 0);
QDeclarativeDebugService::statusChanged(status);
engine()->setAgent(on ? this : 0);
QDeclarativeDebugService::enabledChanged(on);
}
} // 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