summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/cpptoolsplugin.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2014-09-12 12:58:08 +0200
committerTobias Hunger <tobias.hunger@digia.com>2014-09-12 15:00:48 +0200
commitffe432e8d84af47f5c6e54409e13268a9e67eefc (patch)
tree0edd117f1b02c560841870596cb39fdd9fe7dcaa /src/plugins/cpptools/cpptoolsplugin.cpp
parentad957282c84d74919cf63565f44966b1c4b1157d (diff)
downloadqt-creator-ffe432e8d84af47f5c6e54409e13268a9e67eefc.tar.gz
Fix string
Remove the '.' as the VariableManager will append text starting with ':' to that textFix strings. Change-Id: I490319fac964ea8fd8078dff90ec81c9bdef8d09 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cpptoolsplugin.cpp')
-rw-r--r--src/plugins/cpptools/cpptoolsplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cpptoolsplugin.cpp b/src/plugins/cpptools/cpptoolsplugin.cpp
index debda7972c..c788e17ab8 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;