aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/targetsettingspanel.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2020-06-25 12:32:24 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2020-06-26 07:30:19 +0000
commit6ac416fc8174983acde36677ca2f1b8f6612dec2 (patch)
treea40059363c6298e8d5510df06df3149bb8e25243 /src/plugins/projectexplorer/targetsettingspanel.cpp
parentaf7c218d95d670080893356af7a42c672f1de1a9 (diff)
Target Selector: Do not repeat kit name in context menu
Kit names can get rather unwieldy, and there is no point in repeating them in this particular context menu, where the user clicked pretty much right on the kit name. Fixes: QTCREATORBUG-24242 Change-Id: I04d96e53ece24fd6c54d8aa225d13a0c7354acd0 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/targetsettingspanel.cpp')
-rw-r--r--src/plugins/projectexplorer/targetsettingspanel.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/plugins/projectexplorer/targetsettingspanel.cpp b/src/plugins/projectexplorer/targetsettingspanel.cpp
index 9d3c1ee9d3a..5421a1f39f1 100644
--- a/src/plugins/projectexplorer/targetsettingspanel.cpp
+++ b/src/plugins/projectexplorer/targetsettingspanel.cpp
@@ -399,14 +399,14 @@ public:
const QString kitName = kit->displayName();
const QString projectName = m_project->displayName();
- QAction *enableAction = menu->addAction(tr("Enable Kit \"%1\" for Project \"%2\"").arg(kitName, projectName));
+ QAction *enableAction = menu->addAction(tr("Enable Kit for Project \"%2\"").arg(projectName));
enableAction->setEnabled(isSelectable && m_kitId.isValid() && !isEnabled());
QObject::connect(enableAction, &QAction::triggered, [this, kit] {
m_project->addTargetForKit(kit);
});
QAction * const enableForAllAction
- = menu->addAction(tr("Enable Kit \"%1\" for All Projects").arg(kitName));
+ = menu->addAction(tr("Enable Kit for All Projects"));
enableForAllAction->setEnabled(isSelectable);
QObject::connect(enableForAllAction, &QAction::triggered, [kit] {
for (Project * const p : SessionManager::projects()) {
@@ -415,7 +415,7 @@ public:
}
});
- QAction *disableAction = menu->addAction(tr("Disable Kit \"%1\" for Project \"%2\"").arg(kitName, projectName));
+ QAction *disableAction = menu->addAction(tr("Disable Kit for Project \"%2\"").arg(projectName));
disableAction->setEnabled(isSelectable && m_kitId.isValid() && isEnabled());
QObject::connect(disableAction, &QAction::triggered, m_project, [this] {
Target *t = target();
@@ -440,8 +440,7 @@ public:
m_project->removeTarget(t);
});
- QAction *disableForAllAction
- = menu->addAction(tr("Disable Kit \"%1\" for All Projects").arg(kitName));
+ QAction *disableForAllAction = menu->addAction(tr("Disable Kit for All Projects"));
disableForAllAction->setEnabled(isSelectable);
QObject::connect(disableForAllAction, &QAction::triggered, [kit] {
for (Project * const p : SessionManager::projects()) {