diff options
author | hjk <qtc-committer@nokia.com> | 2010-12-06 08:43:29 +0100 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2010-12-06 08:43:29 +0100 |
commit | 3282c1af272ebad5b573c1f1b7e391515ff9dd7c (patch) | |
tree | 44bea5b83a5c6cb420855c85dd043cffc2f9b3e6 /src/plugins/debugger/debuggerplugin.h | |
parent | 3006a136d0f203ed642ba4ef8f6d53cf0f9314ae (diff) | |
download | qt-creator-3282c1af272ebad5b573c1f1b7e391515ff9dd7c.tar.gz |
debugger: remove unused bits from the debugger plugin interface
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.h')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/plugins/debugger/debuggerplugin.h b/src/plugins/debugger/debuggerplugin.h index fa9fee8bde..211fdf176e 100644 --- a/src/plugins/debugger/debuggerplugin.h +++ b/src/plugins/debugger/debuggerplugin.h @@ -45,11 +45,10 @@ namespace Debugger { class DebuggerRunControl; class DebuggerStartParameters; -class DebuggerMainWindow; -// This is the "external" interface of the debugger plugin that's -// visible from Creator core. The internal interfact to global -// functionality to be used by debugger views and debugger engines +// This is the "external" interface of the debugger plugin that's visible +// from Qt Creator core. The internal interface to global debugger +// functionality that is used by debugger views and debugger engines // is DebuggerCore, implemented in DebuggerPluginPrivate. class DEBUGGER_EXPORT DebuggerPlugin : public ExtensionSystem::IPlugin @@ -65,7 +64,6 @@ public: static void startDebugger(ProjectExplorer::RunControl *runControl); static void displayDebugger(ProjectExplorer::RunControl *runControl); static bool isActiveDebugLanguage(int language); - static DebuggerMainWindow *mainWindow(); private: // IPlugin implementation. @@ -73,9 +71,6 @@ private: void remoteCommand(const QStringList &options, const QStringList &arguments); ShutdownFlag aboutToShutdown(); void extensionsInitialized(); - - void runControlStarted(DebuggerRunControl *runControl); - void runControlFinished(DebuggerRunControl *runControl); }; } // namespace Debugger |