diff options
author | Brad King <brad.king@kitware.com> | 2016-12-01 19:25:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-12-01 19:27:13 (GMT) |
commit | dde72ee9439e0f2b77b097b7e49851ce4cd52d11 (patch) | |
tree | 72d9055076d3b12b7f9bca996706a7d6e2dd3d0d /Source | |
parent | debeb07a4005dfe4ea506041f2b2b11ee9bb2d09 (diff) | |
download | CMake-dde72ee9439e0f2b77b097b7e49851ce4cd52d11.zip CMake-dde72ee9439e0f2b77b097b7e49851ce4cd52d11.tar.gz CMake-dde72ee9439e0f2b77b097b7e49851ce4cd52d11.tar.bz2 |
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
Diffstat (limited to 'Source')
-rw-r--r-- | Source/QtDialog/FirstConfigure.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/QtDialog/FirstConfigure.cxx b/Source/QtDialog/FirstConfigure.cxx index c34751a..2f1df4f 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); |