From 73f3291c6d3f85a01b476070806f45a81c8a0c99 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Tue, 25 Jun 2019 08:54:18 +0200 Subject: [PATCH] qmake Project Manager: Fix UI text Change-Id: I6048c952ca36d953d7667676435440615d756c45 Reviewed-by: Christian Kandeler --- src/plugins/qmakeprojectmanager/qmakekitinformation.cpp | 2 +- src/plugins/qmakeprojectmanager/qmakesettings.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/qmakeprojectmanager/qmakekitinformation.cpp b/src/plugins/qmakeprojectmanager/qmakekitinformation.cpp index 623b20a1a4e..95b7c8eb5bb 100644 --- a/src/plugins/qmakeprojectmanager/qmakekitinformation.cpp +++ b/src/plugins/qmakeprojectmanager/qmakekitinformation.cpp @@ -164,7 +164,7 @@ KitAspect::ItemList QmakeKitAspect::toUserOutput(const Kit *k) const void QmakeKitAspect::addToMacroExpander(Kit *kit, MacroExpander *expander) const { - expander->registerVariable("Qmake:mkspec", tr("Mkspec configured for qmake by the Kit."), + expander->registerVariable("Qmake:mkspec", tr("Mkspec configured for qmake by the kit."), [kit]() -> QString { return QDir::toNativeSeparators(mkspec(kit)); }); diff --git a/src/plugins/qmakeprojectmanager/qmakesettings.cpp b/src/plugins/qmakeprojectmanager/qmakesettings.cpp index f3c2bf9760e..37c0a4ce39d 100644 --- a/src/plugins/qmakeprojectmanager/qmakesettings.cpp +++ b/src/plugins/qmakeprojectmanager/qmakesettings.cpp @@ -103,7 +103,7 @@ public: m_warnAgainstUnalignedBuildDirCheckbox.setText(tr("Warn if a project's source and " "build directories are not at the same level")); m_warnAgainstUnalignedBuildDirCheckbox.setToolTip(tr("Qmake has subtle bugs that " - "can trigger if source and build directory are not at the same level.")); + "can be triggered if source and build directory are not at the same level.")); m_warnAgainstUnalignedBuildDirCheckbox.setChecked( QmakeSettings::warnAgainstUnalignedBuildDir()); m_alwaysRunQmakeCheckbox.setText(tr("Run qmake on every build"));