From 4bbd89d1b37800773802914cdfff62d43b5cb0de Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Tue, 2 Aug 2016 11:52:52 +0200 Subject: [PATCH] Debugger: Register step out action also for QML Change-Id: I11dceb325d5611bb5a0d9fb9750dbefdea60f2dc Task-number: QTCREATORBUG-16691 Reviewed-by: hjk --- src/plugins/debugger/debuggerplugin.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index c3848669652..f1d9c7bf8c4 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);