Cpp: Add full stop to end of message

Change-Id: Idbda9e71fcd2322c2925c5dbfdca540992660282
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Leena Miettinen
2015-10-22 17:14:23 +02:00
committed by Tobias Hunger
parent 5c4bd99715
commit a2ae98557d

View File

@@ -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);