From dde72ee9439e0f2b77b097b7e49851ce4cd52d11 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 1 Dec 2016 14:25:10 -0500 Subject: [PATCH] cmake-gui: Clarify help string on toolset selection field The text `-T parameter` may be read as an example value for the field, but the `-T` part should not be included. Clarify the wording. Closes: #16475 --- Source/QtDialog/FirstConfigure.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/QtDialog/FirstConfigure.cxx b/Source/QtDialog/FirstConfigure.cxx index c34751aa6e..2f1df4fb3a 100644 --- a/Source/QtDialog/FirstConfigure.cxx +++ b/Source/QtDialog/FirstConfigure.cxx @@ -56,7 +56,7 @@ QFrame* StartCompilerSetup::CreateToolsetWidgets() QVBoxLayout* l = new QVBoxLayout(frame); l->setContentsMargins(0, 0, 0, 0); - ToolsetLabel = new QLabel(tr("Optional toolset to use (-T parameter)")); + ToolsetLabel = new QLabel(tr("Optional toolset to use (argument to -T)")); l->addWidget(ToolsetLabel); Toolset = new QLineEdit(frame);