forked from qt-creator/qt-creator
CMake: fix capitalization of the "Run CMake..." button
Change-Id: I5402d29e6916110934411848542b1776178615e1 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
@@ -831,7 +831,7 @@ CMakeBuildSettingsWidget::CMakeBuildSettingsWidget(CMakeBuildConfiguration *bc)
|
|||||||
fl->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
|
fl->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
|
||||||
setLayout(fl);
|
setLayout(fl);
|
||||||
|
|
||||||
QPushButton *runCmakeButton = new QPushButton(tr("Run cmake..."));
|
QPushButton *runCmakeButton = new QPushButton(tr("Run CMake..."));
|
||||||
connect(runCmakeButton, SIGNAL(clicked()),
|
connect(runCmakeButton, SIGNAL(clicked()),
|
||||||
this, SLOT(runCMake()));
|
this, SLOT(runCMake()));
|
||||||
fl->addRow(tr("Reconfigure project:"), runCmakeButton);
|
fl->addRow(tr("Reconfigure project:"), runCmakeButton);
|
||||||
|
Reference in New Issue
Block a user