Fix 'Run CMake' button text.

It raises a dialog, so it needs an ellipsis.

Change-Id: Ifb668e7a4419c6eaba080b99e64e57cb9730e071
Reviewed-by: Tobias Nätterlund <tobias.naetterlund@kdab.com>
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Reviewed-by: hjk <hjk121@nokiamail.com>
Reviewed-by: Nicolas Arnaud-Cormos <nicolas@kdab.com>
This commit is contained in:
Stephen Kelly
2014-03-04 13:57:51 +01:00
committed by hjk
parent 9ac55e5b2c
commit 424a5c1489

View File

@@ -824,7 +824,7 @@ CMakeBuildSettingsWidget::CMakeBuildSettingsWidget(CMakeBuildConfiguration *bc)
fl->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
setLayout(fl);
QPushButton *runCmakeButton = new QPushButton(tr("Run cmake"));
QPushButton *runCmakeButton = new QPushButton(tr("Run cmake..."));
connect(runCmakeButton, SIGNAL(clicked()),
this, SLOT(runCMake()));
fl->addRow(tr("Reconfigure project:"), runCmakeButton);