Skip to content
Snippets Groups Projects
Commit 19638d3d authored by Kai Koehne's avatar Kai Koehne
Browse files

QmlJsDebugger: Fix compilation with latest qt

setEnabled(), enabledChanged() got removed in QDeclarativeDebugClient,
QDeclarativeDebugService.
parent ba2d9f3e
No related branches found
No related tags found
No related merge requests found
...@@ -514,7 +514,6 @@ void JSDebuggerAgent::continueExec() ...@@ -514,7 +514,6 @@ void JSDebuggerAgent::continueExec()
void JSDebuggerAgent::enabledChanged(bool on) void JSDebuggerAgent::enabledChanged(bool on)
{ {
engine()->setAgent(on ? this : 0); engine()->setAgent(on ? this : 0);
QDeclarativeDebugService::enabledChanged(on);
} }
} // namespace QmlJSDebugger } // 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