From 67ca818e5b701a7a4567ef71dfd074822b18a909 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Mon, 11 Jan 2016 11:40:24 +0100 Subject: [PATCH] CMake: fix grammar in error message ...for CMakeRunConfiguration Change-Id: I6b977f6ea2fe3b1aa75de497a93edc6256038a9e Reviewed-by: Tobias Hunger --- src/plugins/cmakeprojectmanager/cmakebuildstep.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp b/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp index 0f05af3f499..f2ab6605ece 100644 --- a/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp +++ b/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp @@ -178,9 +178,9 @@ bool CMakeBuildStep::init(QList &earlierSteps) if (m_addRunConfigurationArgument && (!rc || rc->title().isEmpty())) { emit addTask(Task(Task::Error, QCoreApplication::translate("ProjectExplorer::Task", - "You asked to build the current Run Configurations build target only, " - "but the current Run Configuration is not associated with a build target. " - "Please update the Make Step in your build settings."), + "You asked to build the current Run Configuration's build target only, " + "but it is not associated with a build target. " + "Update the Make Step in your build settings."), Utils::FileName(), -1, ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM)); canInit = false;