Fix signal broken in the porting to new buildconfiguration

This commit is contained in:
dt
2009-11-30 13:57:41 +01:00
parent 9119853283
commit 592c1fba65
2 changed files with 4 additions and 4 deletions

View File

@@ -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();

View File

@@ -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();