qmake Project Manager: Fix UI text

Change-Id: I6048c952ca36d953d7667676435440615d756c45
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Leena Miettinen
2019-06-25 08:54:18 +02:00
parent 07ba637433
commit 73f3291c6d
2 changed files with 2 additions and 2 deletions

View File

@@ -164,7 +164,7 @@ KitAspect::ItemList QmakeKitAspect::toUserOutput(const Kit *k) const
void QmakeKitAspect::addToMacroExpander(Kit *kit, MacroExpander *expander) 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 { [kit]() -> QString {
return QDir::toNativeSeparators(mkspec(kit)); return QDir::toNativeSeparators(mkspec(kit));
}); });

View File

@@ -103,7 +103,7 @@ public:
m_warnAgainstUnalignedBuildDirCheckbox.setText(tr("Warn if a project's source and " m_warnAgainstUnalignedBuildDirCheckbox.setText(tr("Warn if a project's source and "
"build directories are not at the same level")); "build directories are not at the same level"));
m_warnAgainstUnalignedBuildDirCheckbox.setToolTip(tr("Qmake has subtle bugs that " 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( m_warnAgainstUnalignedBuildDirCheckbox.setChecked(
QmakeSettings::warnAgainstUnalignedBuildDir()); QmakeSettings::warnAgainstUnalignedBuildDir());
m_alwaysRunQmakeCheckbox.setText(tr("Run qmake on every build")); m_alwaysRunQmakeCheckbox.setText(tr("Run qmake on every build"));