summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2016-08-02 11:52:52 +0200
committerUlf Hermann <ulf.hermann@qt.io>2016-08-02 11:16:45 +0000
commit4bbd89d1b37800773802914cdfff62d43b5cb0de (patch)
treef837738122eb462a810eaaa61c124fdfdb0db21d
parent59f184b69bdbbe47cb0754dc079c5edeeddee3a0 (diff)
downloadqt-creator-4bbd89d1b37800773802914cdfff62d43b5cb0de.tar.gz
Debugger: Register step out action also for QML
Change-Id: I11dceb325d5611bb5a0d9fb9750dbefdea60f2dc Task-number: QTCREATORBUG-16691 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index c384866965..f1d9c7bf8c 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -1628,8 +1628,7 @@ bool DebuggerPluginPrivate::initialize(const QStringList &arguments,
cmd->setAttribute(Command::CA_UpdateText);
debugMenu->addAction(cmd);
- cmd = ActionManager::registerAction(m_stepOutAction,
- Constants::STEPOUT, cppDebuggercontext);
+ cmd = ActionManager::registerAction(m_stepOutAction, Constants::STEPOUT);
cmd->setDefaultKeySequence(QKeySequence(UseMacShortcuts ? tr("Ctrl+Shift+T") : tr("Shift+F11")));
cmd->setAttribute(Command::CA_Hide);
debugMenu->addAction(cmd);