From a4d6c2d89583d3aa7b6f2ab86f3b2ee30961ea05 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Mon, 22 Oct 2018 15:37:34 +0200 Subject: [PATCH] Core: Make variable descriptions consistent The others aren't in imperative form, either. Change-Id: I7af7b0ddcdf409d952223225bd901c84b9136bc6 Reviewed-by: Leena Miettinen Reviewed-by: Tobias Hunger --- src/plugins/coreplugin/coreplugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/coreplugin/coreplugin.cpp b/src/plugins/coreplugin/coreplugin.cpp index 565b0eac328..7f367331312 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.")