diff options
author | hjk <qtc-committer@nokia.com> | 2010-12-06 08:51:46 +0100 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2010-12-06 08:51:46 +0100 |
commit | 688f5d594105bf6e92ca6b78afb9e9be015dbc52 (patch) | |
tree | cf655335e10c88189c3130432e5f9445dd5c57de /src/plugins/debugger/debuggerplugin.h | |
parent | 3282c1af272ebad5b573c1f1b7e391515ff9dd7c (diff) | |
download | qt-creator-688f5d594105bf6e92ca6b78afb9e9be015dbc52.tar.gz |
debugger: more interface cleanup
Looks like DebuggerPlugin::mainWindow() was used after all.
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.h')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/debugger/debuggerplugin.h b/src/plugins/debugger/debuggerplugin.h index 211fdf176e..625c9e59b9 100644 --- a/src/plugins/debugger/debuggerplugin.h +++ b/src/plugins/debugger/debuggerplugin.h @@ -43,6 +43,7 @@ class RunControl; namespace Debugger { +class DebuggerMainWindow; class DebuggerRunControl; class DebuggerStartParameters; @@ -59,11 +60,15 @@ public: DebuggerPlugin(); ~DebuggerPlugin(); + // Used by Maemo debugging support. static DebuggerRunControl *createDebugger(const DebuggerStartParameters &sp, ProjectExplorer::RunConfiguration *rc = 0); static void startDebugger(ProjectExplorer::RunControl *runControl); static void displayDebugger(ProjectExplorer::RunControl *runControl); + + // Used by QmlJSInspector. static bool isActiveDebugLanguage(int language); + static DebuggerMainWindow *mainWindow(); private: // IPlugin implementation. |