aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2014-11-26 10:04:49 +0100
committerDavid Schulz <david.schulz@theqtcompany.com>2014-11-26 10:08:24 +0100
commit050197edf38a2d879fa2122c2ec8ef2ff3342e70 (patch)
treef4e8d90aee149af9d17bd9b089add2de4865cd97 /src
parent28907f76e40998ed7f40e5d14c8684c033d124e8 (diff)
Debugger: Use Qt5 style disconnect
Change-Id: I150df04e8b51880bb57cbc8a0a39461b0d8a54aa Reviewed-by: hjk <hjk121@nokiamail.com> Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index 7cf5b79d70..4e9b867016 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -1576,8 +1576,8 @@ void DebuggerPluginPrivate::continueOnAttach(Debugger::DebuggerState state)
if (state != InferiorStopOk)
return;
// disconnect and continue
- disconnect(currentEngine(), SIGNAL(stateChanged(Debugger::DebuggerState)),
- this, SLOT(continueOnAttach(Debugger::DebuggerState)));
+ disconnect(currentEngine(), &DebuggerEngine::stateChanged,
+ this, &DebuggerPluginPrivate::continueOnAttach);
handleExecContinue();
}