forked from qt-creator/qt-creator
Fix connect that got broken during rebase.
* Fix two connects I broke earlier while doing a rebase. Reviewed-by: Roberto Raggi
This commit is contained in:
@@ -531,10 +531,10 @@ BuildConfigurationComboBox::BuildConfigurationComboBox(Project *p, QWidget *pare
|
|||||||
// this, SLOT(nameChanged(ProjectExplorer::BuildConfiguration *)));
|
// this, SLOT(nameChanged(ProjectExplorer::BuildConfiguration *)));
|
||||||
connect(p, SIGNAL(activeBuildConfigurationChanged()),
|
connect(p, SIGNAL(activeBuildConfigurationChanged()),
|
||||||
this, SLOT(activeConfigurationChanged()));
|
this, SLOT(activeConfigurationChanged()));
|
||||||
connect(p, SIGNAL(addedBuildConfiguration(ProjectExplorer::Project *, ProjectExplorer::BuildConfiguration *)),
|
connect(p, SIGNAL(addedBuildConfiguration(ProjectExplorer::Project*,ProjectExplorer::BuildConfiguration*)),
|
||||||
this, SLOT(addedBuildConfiguration(ProjectExplorer::Project *, ProjectExplorer::BuildConfiguration *)));
|
this, SLOT(addedBuildConfiguration(ProjectExplorer::Project*,ProjectExplorer::BuildConfiguration*)));
|
||||||
connect(p, SIGNAL(removedBuildConfiguration(ProjectExplorer::Project *, ProjectExplorer::BuildConfiguration *)),
|
connect(p, SIGNAL(removedBuildConfiguration(ProjectExplorer::Project*,ProjectExplorer::BuildConfiguration*)),
|
||||||
this, SLOT(removedBuildConfiguration(ProjectExplorer::Project *, ProjectExplorer::BuildConfiguration *)));
|
this, SLOT(removedBuildConfiguration(ProjectExplorer::Project*,ProjectExplorer::BuildConfiguration*)));
|
||||||
connect(m_comboBox, SIGNAL(activated(int)),
|
connect(m_comboBox, SIGNAL(activated(int)),
|
||||||
this, SLOT(changedIndex(int)));
|
this, SLOT(changedIndex(int)));
|
||||||
}
|
}
|
||||||
|
@@ -98,9 +98,9 @@ private slots:
|
|||||||
void nameChanged(BuildConfiguration *bc);
|
void nameChanged(BuildConfiguration *bc);
|
||||||
void activeConfigurationChanged();
|
void activeConfigurationChanged();
|
||||||
void addedBuildConfiguration(ProjectExplorer::Project *project,
|
void addedBuildConfiguration(ProjectExplorer::Project *project,
|
||||||
BuildConfiguration *bc);
|
ProjectExplorer::BuildConfiguration *bc);
|
||||||
void removedBuildConfiguration(ProjectExplorer::Project *project,
|
void removedBuildConfiguration(ProjectExplorer::Project *project,
|
||||||
BuildConfiguration *bc);
|
ProjectExplorer::BuildConfiguration *bc);
|
||||||
void changedIndex(int newIndex);
|
void changedIndex(int newIndex);
|
||||||
private:
|
private:
|
||||||
int buildConfigurationToIndex(BuildConfiguration *bc);
|
int buildConfigurationToIndex(BuildConfiguration *bc);
|
||||||
|
Reference in New Issue
Block a user