logic: minor gradle project setup fix

This commit is contained in:
mlangkabel
2017-10-31 17:12:37 +01:00
parent 90f9e2645b
commit 8dbfa61234
2 changed files with 40 additions and 28 deletions
+2 -2
View File
@@ -66,7 +66,7 @@ namespace utility
{
// TODO: move error handling to caller of this function
const std::string dialogMessage =
"The following error occurred while executing a Maven command:\n\n" + utility::replace(output, "\r\n", "\n");
"The following error occurred while executing a Gradle command:\n\n" + utility::replace(output, "\r\n", "\n");
MessageStatus(dialogMessage, true, false).dispatch();
Application::getInstance()->handleDialog(dialogMessage);
@@ -88,7 +88,7 @@ namespace utility
{
// TODO: move error handling to caller of this function
const std::string dialogMessage =
"The following error occurred while executing a Maven command:\n\n" + utility::replace(output, "\r\n", "\n");
"The following error occurred while executing a Gradle command:\n\n" + utility::replace(output, "\r\n", "\n");
MessageStatus(dialogMessage, true, false).dispatch();
Application::getInstance()->handleDialog(dialogMessage);