summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/compileoutputwindow.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2022-02-09 18:00:59 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2022-02-10 12:17:13 +0000
commit400ada2daae9051c7479e7e4818d6b866ad5ed13 (patch)
tree80096722a706f14eae209997410e472dd007a5ca /src/plugins/projectexplorer/compileoutputwindow.cpp
parent2eef90e86f0f66b6e81c5bab53ea2d3a08f0321a (diff)
downloadqt-creator-400ada2daae9051c7479e7e4818d6b866ad5ed13.tar.gz
ProjectExplorer: Dis-ambiguate issues pane's "show output" action
Amends 08a86169db. Fixes: QTCREATORBUG-27031 Change-Id: Ie6d214673f6c1c52aab1a035c84a7381f9965588 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/compileoutputwindow.cpp')
-rw-r--r--src/plugins/projectexplorer/compileoutputwindow.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/compileoutputwindow.cpp b/src/plugins/projectexplorer/compileoutputwindow.cpp
index 839a1d2546..a51397bd25 100644
--- a/src/plugins/projectexplorer/compileoutputwindow.cpp
+++ b/src/plugins/projectexplorer/compileoutputwindow.cpp
@@ -116,7 +116,10 @@ CompileOutputWindow::CompileOutputWindow(QAction *cancelBuildAction) :
qRegisterMetaType<QTextCharFormat>("QTextCharFormat");
- m_handler = new ShowOutputTaskHandler(this);
+ m_handler = new ShowOutputTaskHandler(this,
+ tr("Show Compile &Output"),
+ tr("Show the output that generated this issue in the compile output window"),
+ tr("O"));
ExtensionSystem::PluginManager::addObject(m_handler);
setupContext(C_COMPILE_OUTPUT, m_outputWindow);
loadSettings();