From ffe432e8d84af47f5c6e54409e13268a9e67eefc Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Fri, 12 Sep 2014 12:58:08 +0200 Subject: [PATCH] Fix string Remove the '.' as the VariableManager will append text starting with ':' to that textFix strings. Change-Id: I490319fac964ea8fd8078dff90ec81c9bdef8d09 Reviewed-by: Tobias Hunger --- src/plugins/cpptools/cpptoolsplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/cpptools/cpptoolsplugin.cpp b/src/plugins/cpptools/cpptoolsplugin.cpp index debda7972c1..c788e17ab80 100644 --- a/src/plugins/cpptools/cpptoolsplugin.cpp +++ b/src/plugins/cpptools/cpptoolsplugin.cpp @@ -190,7 +190,7 @@ bool CppToolsPlugin::initialize(const QStringList &arguments, QString *error) tr("The license template."), [this]() { return CppToolsPlugin::licenseTemplate(); }); Core::VariableManager::registerFileVariables("Cpp:LicenseTemplatePath", - tr("The configured path to the license template."), + tr("The configured path to the license template"), [this]() { return CppToolsPlugin::licenseTemplatePath().toString(); }); return true;