diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-10-20 11:38:27 +0200 |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-10-20 11:38:42 +0200 |
commit | 63c2ceae3b916956ed6ff73a076b6f9a9ecca141 (patch) | |
tree | b58a6de3f8b40b09842e175e8a2dc77eee943e93 | |
parent | 8f4bdd5355e558227e599d80e7549e16d8934905 (diff) | |
download | qt-creator-63c2ceae3b916956ed6ff73a076b6f9a9ecca141.tar.gz |
fix compile :}
-rw-r--r-- | src/plugins/debugger/cdb/cdbdebugengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/cdb/cdbdebugengine.cpp b/src/plugins/debugger/cdb/cdbdebugengine.cpp index d03c68bab7..6c307af0c5 100644 --- a/src/plugins/debugger/cdb/cdbdebugengine.cpp +++ b/src/plugins/debugger/cdb/cdbdebugengine.cpp @@ -824,7 +824,7 @@ void CdbDebugEnginePrivate::processCreatedAttached(ULONG64 processHandle, ULONG6 void CdbDebugEngine::processTerminated(unsigned long exitCode) { manager()->showDebuggerOutput(LogMisc, tr("The process exited with exit code %1.").arg(exitCode)); - if (m_engine->state() != InferiorStopping) + if (state() != InferiorStopping) setState(InferiorStopping, Q_FUNC_INFO, __LINE__); setState(InferiorStopped, Q_FUNC_INFO, __LINE__); setState(InferiorShuttingDown, Q_FUNC_INFO, __LINE__); |