forked from qt-creator/qt-creator
Fix signal broken in the porting to new buildconfiguration
This commit is contained in:
@@ -250,8 +250,8 @@ QMakeStepConfigWidget::QMakeStepConfigWidget(QMakeStep *step)
|
|||||||
connect(m_ui.buildConfigurationComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(buildConfigurationChanged()));
|
connect(m_ui.buildConfigurationComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(buildConfigurationChanged()));
|
||||||
connect(step, SIGNAL(changed()),
|
connect(step, SIGNAL(changed()),
|
||||||
this, SLOT(update()));
|
this, SLOT(update()));
|
||||||
connect(step->buildConfiguration(), SIGNAL(qtVersionChanged(ProjectExplorer::BuildConfiguration *)),
|
connect(step->buildConfiguration(), SIGNAL(qtVersionChanged()),
|
||||||
this, SLOT(qtVersionChanged(ProjectExplorer::BuildConfiguration *)));
|
this, SLOT(qtVersionChanged()));
|
||||||
}
|
}
|
||||||
|
|
||||||
QString QMakeStepConfigWidget::summaryText() const
|
QString QMakeStepConfigWidget::summaryText() const
|
||||||
@@ -259,7 +259,7 @@ QString QMakeStepConfigWidget::summaryText() const
|
|||||||
return m_summaryText;
|
return m_summaryText;
|
||||||
}
|
}
|
||||||
|
|
||||||
void QMakeStepConfigWidget::qtVersionChanged(ProjectExplorer::BuildConfiguration *bc)
|
void QMakeStepConfigWidget::qtVersionChanged()
|
||||||
{
|
{
|
||||||
updateTitleLabel();
|
updateTitleLabel();
|
||||||
updateEffectiveQMakeCall();
|
updateEffectiveQMakeCall();
|
||||||
|
@@ -116,7 +116,7 @@ private slots:
|
|||||||
void qmakeArgumentsLineEditTextEdited();
|
void qmakeArgumentsLineEditTextEdited();
|
||||||
void buildConfigurationChanged();
|
void buildConfigurationChanged();
|
||||||
void update();
|
void update();
|
||||||
void qtVersionChanged(ProjectExplorer::BuildConfiguration *bc);
|
void qtVersionChanged();
|
||||||
private:
|
private:
|
||||||
void updateTitleLabel();
|
void updateTitleLabel();
|
||||||
void updateEffectiveQMakeCall();
|
void updateEffectiveQMakeCall();
|
||||||
|
Reference in New Issue
Block a user