aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/appoutputpane.cpp
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2023-02-14 10:10:20 +0100
committerEike Ziller <eike.ziller@qt.io>2023-02-16 09:07:12 +0000
commitc3c99174e43dea4bab0b78fcd5055f8b8d854a1d (patch)
tree8e65c8643eb9ba9aa6a667fa87dad37d029e3587 /src/plugins/projectexplorer/appoutputpane.cpp
parentcab8eee85c049de2f1e3b557c262da7c22ce464f (diff)
Use common tool tip for "Configure..." kind of buttons
We have a function that centralizes the text for that. Change-Id: I9d9fbed6e111038e7512030e199b8d8d03fbbafa Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/projectexplorer/appoutputpane.cpp')
-rw-r--r--src/plugins/projectexplorer/appoutputpane.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/appoutputpane.cpp b/src/plugins/projectexplorer/appoutputpane.cpp
index a5590a7bb1..3e1927faeb 100644
--- a/src/plugins/projectexplorer/appoutputpane.cpp
+++ b/src/plugins/projectexplorer/appoutputpane.cpp
@@ -188,7 +188,7 @@ AppOutputPane::AppOutputPane() :
connect(this, &IOutputPane::zoomOutRequested, this, &AppOutputPane::zoomOut);
connect(this, &IOutputPane::resetZoomRequested, this, &AppOutputPane::resetZoom);
- m_settingsButton->setToolTip(Tr::tr("Open Settings Page"));
+ m_settingsButton->setToolTip(Core::ICore::msgShowOptionsDialog());
m_settingsButton->setIcon(Utils::Icons::SETTINGS_TOOLBAR.icon());
connect(m_settingsButton, &QToolButton::clicked, this, [] {
Core::ICore::showOptionsDialog(OPTIONS_PAGE_ID);