aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerrunner.cpp
diff options
context:
space:
mode:
authorTobias Hunger <[email protected]>2012-06-27 22:19:20 +0200
committerhjk <[email protected]>2012-06-28 08:32:01 +0200
commitd1971174d4d475e48c6f922e9aefab933a8581af (patch)
treea034bc46bf1edcc560da6e6d125c1cedf5d6fbcd /src/plugins/debugger/debuggerrunner.cpp
parent68ce7a667bf8e7182d154cd3aecdf24ff474ce8d (diff)
Remove unused member variable from debugger plugin
Diffstat (limited to 'src/plugins/debugger/debuggerrunner.cpp')
-rw-r--r--src/plugins/debugger/debuggerrunner.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/debugger/debuggerrunner.cpp b/src/plugins/debugger/debuggerrunner.cpp
index 9d95678f8e7..4f9f7a1ac84 100644
--- a/src/plugins/debugger/debuggerrunner.cpp
+++ b/src/plugins/debugger/debuggerrunner.cpp
@@ -827,9 +827,8 @@ DEBUGGER_EXPORT ConfigurationCheck checkDebugConfiguration(const DebuggerStartPa
////////////////////////////////////////////////////////////////////////
// A factory to create DebuggerRunControls
-DebuggerRunControlFactory::DebuggerRunControlFactory(QObject *parent,
- unsigned enabledEngines)
- : IRunControlFactory(parent), m_enabledEngines(enabledEngines)
+DebuggerRunControlFactory::DebuggerRunControlFactory(QObject *parent)
+ : IRunControlFactory(parent)
{}
bool DebuggerRunControlFactory::canRun(RunConfiguration *runConfiguration, RunMode mode) const