aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerplugin.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-09-25 11:35:44 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-09-25 11:35:44 +0200
commit978cf4bda8882ddf763e4a353f5cfee729a6d3b6 (patch)
treea4231cf285e618641587af139e2a9d4ab667f7e8 /src/plugins/debugger/debuggerplugin.h
parente7cef7ef227fb186ccac436413adead6d9e5aa75 (diff)
Rename IRunConfigurationRunner -> IRunControlFactory...
and ApplicationRunConfiguration to LocalApplicationRunConfiguration, preparing remote debugging. Change the interface canRun() to be const, run() to create() (since it does not run anything), use references to the QSharedPointer<Foo>. Introduce d-Pointer and remove unneeded headers from ProjectExplorerPlugin and add missing includes everywhere.
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.h')
-rw-r--r--src/plugins/debugger/debuggerplugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggerplugin.h b/src/plugins/debugger/debuggerplugin.h
index fb0e69b301..a0777d7f28 100644
--- a/src/plugins/debugger/debuggerplugin.h
+++ b/src/plugins/debugger/debuggerplugin.h
@@ -59,7 +59,7 @@ namespace Internal {
class BreakpointData;
class DebuggerManager;
-class DebuggerRunner;
+class DebuggerRunControlFactory;
class DebugMode;
class DisassemblerViewAgent;
struct StackFrame;
@@ -126,7 +126,7 @@ private:
DebuggerManager *m_manager;
DebugMode *m_debugMode;
- DebuggerRunner *m_debuggerRunner;
+ DebuggerRunControlFactory *m_debuggerRunControlFactory;
QString m_previousMode;
TextEditor::BaseTextMark *m_locationMark;