summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2017-10-20 15:13:28 +0200
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2017-10-20 13:16:46 +0000
commit3cd6910315a825ad49dda9d5cc26df7c96125199 (patch)
tree0fa41243e79c02919366a56d3dcdb4e7862ef11b
parentdbd812e641285e093b86fd5e6de2c58f804b665e (diff)
downloadqt-creator-3cd6910315a825ad49dda9d5cc26df7c96125199.tar.gz
Nim: Add period to the end of error message
Change-Id: I6ba6ca4f1e551329784cb44a3a2c48eef65c3b47 Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--src/plugins/nim/project/nimproject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/nim/project/nimproject.cpp b/src/plugins/nim/project/nimproject.cpp
index c6d28a3974..01f5917760 100644
--- a/src/plugins/nim/project/nimproject.cpp
+++ b/src/plugins/nim/project/nimproject.cpp
@@ -166,7 +166,7 @@ bool NimProject::supportsKit(Kit *k, QString *errorMessage) const
}
if (!tc->compilerCommand().exists()) {
if (errorMessage)
- *errorMessage = tr("Nim compiler does not exist");
+ *errorMessage = tr("Nim compiler does not exist.");
return false;
}
return true;