forked from qt-creator/qt-creator
Kill ";;" at end of statement
Change-Id: I177094f19978e07f85e42b34701d8f03cd26665e Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
@@ -616,7 +616,7 @@ QByteArray CMakeRunPage::cachedGeneratorFromFile(const QString &cache)
|
||||
void CMakeRunPage::initializePage()
|
||||
{
|
||||
if (m_mode == Initial) {
|
||||
bool upToDateXmlFile = m_cmakeWizard->existsUpToDateXmlFile();;
|
||||
bool upToDateXmlFile = m_cmakeWizard->existsUpToDateXmlFile();
|
||||
m_buildDirectory = m_cmakeWizard->buildDirectory();
|
||||
|
||||
if (upToDateXmlFile) {
|
||||
|
||||
@@ -283,7 +283,7 @@ CMakeRunConfigurationWidget::CMakeRunConfigurationWidget(CMakeRunConfiguration *
|
||||
m_details->setLayout(fl);
|
||||
|
||||
QVBoxLayout *vbx = new QVBoxLayout(this);
|
||||
vbx->setMargin(0);;
|
||||
vbx->setMargin(0);
|
||||
vbx->addWidget(m_detailsContainer);
|
||||
|
||||
connect(m_workingDirectoryEdit, SIGNAL(changed(QString)),
|
||||
|
||||
@@ -237,7 +237,7 @@ void MakeStep::stdOutput(const QString &line)
|
||||
{
|
||||
if (m_percentProgress.indexIn(line) != -1) {
|
||||
bool ok = false;
|
||||
int percent = m_percentProgress.cap(1).toInt(&ok);;
|
||||
int percent = m_percentProgress.cap(1).toInt(&ok);
|
||||
if (ok)
|
||||
futureInterface()->setProgressValue(percent);
|
||||
} else if (m_ninjaProgress.indexIn(line) != -1) {
|
||||
|
||||
Reference in New Issue
Block a user