Revert "Compile"

This reverts commit a9820d4fca.
This commit is contained in:
Aaron Kennedy
2010-09-29 16:42:00 +10:00
parent a9820d4fca
commit 8ff81fd75d
2 changed files with 4 additions and 4 deletions

View File

@@ -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