summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@theqtcompany.com>2015-10-22 17:14:23 +0200
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-10-23 08:05:18 +0000
commita2ae98557d4744db79d91a475a24b293be692fb8 (patch)
treedaedb57b0cdc1f9072bbefcee613543e396fcc95
parent5c4bd997153b06d33c8f3f6e340b595effb26e06 (diff)
downloadqt-creator-a2ae98557d4744db79d91a475a24b293be692fb8.tar.gz
Cpp: Add full stop to end of message
Change-Id: Idbda9e71fcd2322c2925c5dbfdca540992660282 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
-rw-r--r--src/plugins/cpptools/abstracteditorsupport.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/abstracteditorsupport.cpp b/src/plugins/cpptools/abstracteditorsupport.cpp
index afe3a70103..a6256293d8 100644
--- a/src/plugins/cpptools/abstracteditorsupport.cpp
+++ b/src/plugins/cpptools/abstracteditorsupport.cpp
@@ -61,7 +61,7 @@ QString AbstractEditorSupport::licenseTemplate(const QString &file, const QStrin
Utils::MacroExpander expander;
expander.registerVariable("Cpp:License:FileName", tr("The file name."),
[file]() { return Utils::FileName::fromString(file).fileName(); });
- expander.registerVariable("Cpp:License:ClassName", tr("The class name"),
+ expander.registerVariable("Cpp:License:ClassName", tr("The class name."),
[className]() { return className; });
return Utils::TemplateEngine::processText(&expander, license, 0);