From 73360f8acb5757326ea5755216bab798592de5dc Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 5 Jun 2014 22:54:49 +0200 Subject: [PATCH] Debugger: Remove some unused code Change-Id: I69322a5c95ecbf8df8eeff31ef68cc17811fc1b6 Reviewed-by: Kai Koehne --- src/plugins/debugger/debuggerplugin.cpp | 11 ----------- src/plugins/debugger/debuggerplugin.h | 4 ---- 2 files changed, 15 deletions(-) diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 43aefe68636..05186ab41a1 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -3530,17 +3530,6 @@ void DebuggerPlugin::extensionsInitialized() theDebuggerCore->extensionsInitialized(); } -DebuggerMainWindow *DebuggerPlugin::mainWindow() -{ - return theDebuggerCore->m_mainWindow; -} - -QAction *DebuggerPlugin::visibleDebugAction() -{ - return theDebuggerCore->m_visibleStartAction; -} - - #ifdef WITH_TESTS void DebuggerPluginPrivate::testLoadProject(const QString &proFile, const TestCallBack &cb) diff --git a/src/plugins/debugger/debuggerplugin.h b/src/plugins/debugger/debuggerplugin.h index 8b817422c33..363207ac691 100644 --- a/src/plugins/debugger/debuggerplugin.h +++ b/src/plugins/debugger/debuggerplugin.h @@ -56,10 +56,6 @@ public: DebuggerPlugin(); ~DebuggerPlugin(); - // Used by QmlJSInspector. - static DebuggerMainWindow *mainWindow(); - static QAction *visibleDebugAction(); - static DebuggerRunControl *createDebugger(const DebuggerStartParameters &sp, ProjectExplorer::RunConfiguration *rc, QString *errorMessage);