diff options
author | Lasse Holmstedt <lasse.holmstedt@nokia.com> | 2010-08-25 09:59:24 +0200 |
---|---|---|
committer | Lasse Holmstedt <lasse.holmstedt@nokia.com> | 2010-08-25 09:59:33 +0200 |
commit | f547fc16187abd07bb9c0f57ff853ff2162c20d2 (patch) | |
tree | 1dd516ec8a82cd8c36e7e58a0e7bc792b7b1da26 /src/plugins/debugger/debuggerrunner.cpp | |
parent | 792eb84fe459a15dbf4faa3203f3a5b8122dfb27 (diff) | |
download | qt-creator-f547fc16187abd07bb9c0f57ff853ff2162c20d2.tar.gz |
Debugger: Fixed missing variable init
Got lost in a merge.
Diffstat (limited to 'src/plugins/debugger/debuggerrunner.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerrunner.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/debuggerrunner.cpp b/src/plugins/debugger/debuggerrunner.cpp index 19c159b958..341fbbd8c5 100644 --- a/src/plugins/debugger/debuggerrunner.cpp +++ b/src/plugins/debugger/debuggerrunner.cpp @@ -226,6 +226,7 @@ DebuggerRunControl::DebuggerRunControl(RunConfiguration *runConfiguration, , m_myRunConfiguration(runConfiguration) , m_running(false) , m_started(false) + , m_enabledEngines(enabledEngines) { connect(this, SIGNAL(finished()), this, SLOT(handleFinished())); |