From 3a9f242afe84ece18d47a2a88e4dcfc8642f0d0f Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Mon, 25 Jul 2016 15:27:18 +0200 Subject: [PATCH] CMake: Fix grammar in warnings Change-Id: Iaadab95ffa102c02fe8de70b11dd1dd5ad224520 Reviewed-by: Aaron Barany Reviewed-by: Leena Miettinen --- .../cmakeprojectmanager/cmakekitinformation.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/plugins/cmakeprojectmanager/cmakekitinformation.cpp b/src/plugins/cmakeprojectmanager/cmakekitinformation.cpp index c5e057f24bc..3476f17fbdf 100644 --- a/src/plugins/cmakeprojectmanager/cmakekitinformation.cpp +++ b/src/plugins/cmakeprojectmanager/cmakekitinformation.cpp @@ -378,8 +378,8 @@ QList CMakeConfigurationKitInformation::validate(const Kit *k) const "even though the kit has no valid Qt version."), Utils::FileName(), -1, Core::Id(Constants::TASK_CATEGORY_BUILDSYSTEM)); } else if (qmakePath != version->qmakeCommand()) { - result << Task(Task::Warning, tr("CMake configuration has a path to a qmake binary set, " - "which does not match up with the qmake binary path " + result << Task(Task::Warning, tr("CMake configuration has a path to a qmake binary set " + "that does not match the qmake binary path " "configured in the Qt version."), Utils::FileName(), -1, Core::Id(Constants::TASK_CATEGORY_BUILDSYSTEM)); } @@ -398,8 +398,8 @@ QList CMakeConfigurationKitInformation::validate(const Kit *k) const "even though the kit has no valid tool chain."), Utils::FileName(), -1, Core::Id(Constants::TASK_CATEGORY_BUILDSYSTEM)); } else if (tcCPath != tcC->compilerCommand()) { - result << Task(Task::Warning, tr("CMake configuration has a path to a C compiler set, " - "that does not match up with the compiler path " + result << Task(Task::Warning, tr("CMake configuration has a path to a C compiler set " + "that does not match the compiler path " "configured in the tool chain of the kit."), Utils::FileName(), -1, Core::Id(Constants::TASK_CATEGORY_BUILDSYSTEM)); } @@ -417,8 +417,8 @@ QList CMakeConfigurationKitInformation::validate(const Kit *k) const "even though the kit has no valid tool chain."), Utils::FileName(), -1, Core::Id(Constants::TASK_CATEGORY_BUILDSYSTEM)); } else if (tcCxxPath != tcCxx->compilerCommand()) { - result << Task(Task::Warning, tr("CMake configuration has a path to a C++ compiler set, " - "that does not match up with the compiler path " + result << Task(Task::Warning, tr("CMake configuration has a path to a C++ compiler set " + "that does not match the compiler path " "configured in the tool chain of the kit."), Utils::FileName(), -1, Core::Id(Constants::TASK_CATEGORY_BUILDSYSTEM)); }