summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index 29aced6f90..6cdecd4e0d 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -1013,8 +1013,6 @@ bool DebuggerPluginPrivate::initialize(const QStringList &arguments,
QAction *act;
// Populate Windows->Views menu with standard actions.
- Context debugcontext(Constants::C_DEBUGMODE);
-
act = new QAction(tr("Memory..."), this);
act->setVisible(false);
act->setEnabled(false);
@@ -1030,9 +1028,6 @@ bool DebuggerPluginPrivate::initialize(const QStringList &arguments,
m_debuggerSettings = new DebuggerSettings;
m_debuggerSettings->readSettings();
- const Context cppDebuggercontext(C_CPPDEBUGGER);
- const Context qmljsDebuggercontext(C_QMLDEBUGGER);
-
const auto addLabel = [](QWidget *widget, const QString &text) {
auto vbox = qobject_cast<QVBoxLayout *>(widget->layout());
QTC_ASSERT(vbox, return);