summaryrefslogtreecommitdiff
path: root/src/plugins/coreplugin/coreplugin.cpp
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2018-10-22 15:37:34 +0200
committerRobert Loehning <robert.loehning@qt.io>2018-10-22 16:20:20 +0000
commita4d6c2d89583d3aa7b6f2ab86f3b2ee30961ea05 (patch)
treee351fbe95cc574babf452a09e5a02267f684e0c4 /src/plugins/coreplugin/coreplugin.cpp
parent84679827aefb8a178b939ab465b87ae76ce7e745 (diff)
downloadqt-creator-a4d6c2d89583d3aa7b6f2ab86f3b2ee30961ea05.tar.gz
Core: Make variable descriptions consistent
The others aren't in imperative form, either. Change-Id: I7af7b0ddcdf409d952223225bd901c84b9136bc6 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'src/plugins/coreplugin/coreplugin.cpp')
-rw-r--r--src/plugins/coreplugin/coreplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/coreplugin/coreplugin.cpp b/src/plugins/coreplugin/coreplugin.cpp
index 565b0eac32..7f36733131 100644
--- a/src/plugins/coreplugin/coreplugin.cpp
+++ b/src/plugins/coreplugin/coreplugin.cpp
@@ -197,10 +197,10 @@ bool CorePlugin::initialize(const QStringList &arguments, QString *errorMessage)
.arg(Constants::IDE_DISPLAY_NAME),
[]() { return QVariant(Utils::HostOsInfo::isAnyUnixHost()).toString(); });
expander->registerVariable("HostOs:PathListSeparator",
- tr("Return the path list separator for the platform."),
+ tr("The path list separator for the platform."),
[]() { return QString(Utils::HostOsInfo::pathListSeparator()); });
expander->registerVariable("HostOs:ExecutableSuffix",
- tr("Return the platform executable suffix."),
+ tr("The platform executable suffix."),
[]() { return QString(Utils::HostOsInfo::withExecutableSuffix("")); });
expander->registerVariable("IDE:ResourcePath",
tr("The directory where %1 finds its pre-installed resources.")