diff --git a/src/plugins/projectexplorer/buildsettingspropertiespage.cpp b/src/plugins/projectexplorer/buildsettingspropertiespage.cpp index e8cc4c35537..ee392d11976 100644 --- a/src/plugins/projectexplorer/buildsettingspropertiespage.cpp +++ b/src/plugins/projectexplorer/buildsettingspropertiespage.cpp @@ -146,6 +146,7 @@ void BuildSettingsWidget::init() } m_makeActiveLabel = new QLabel(this); + m_makeActiveLabel->setContentsMargins(m_leftMargin, 4, 0, 4); m_makeActiveLabel->setVisible(false); vbox->addWidget(m_makeActiveLabel); diff --git a/src/plugins/projectexplorer/projectwindow.cpp b/src/plugins/projectexplorer/projectwindow.cpp index b7be977809a..5bec7a3da53 100644 --- a/src/plugins/projectexplorer/projectwindow.cpp +++ b/src/plugins/projectexplorer/projectwindow.cpp @@ -531,10 +531,10 @@ BuildConfigurationComboBox::BuildConfigurationComboBox(Project *p, QWidget *pare // this, SLOT(nameChanged(ProjectExplorer::BuildConfiguration *))); connect(p, SIGNAL(activeBuildConfigurationChanged()), this, SLOT(activeConfigurationChanged())); - connect(p, SIGNAL(addedBuildConfiguration(ProjectExplorer::Project *, ProjectExplorer::BuildConfiguration *)), - this, SLOT(addedBuildConfiguration(ProjectExplorer::Project *, ProjectExplorer::BuildConfiguration *))); - connect(p, SIGNAL(removedBuildConfiguration(ProjectExplorer::Project *, ProjectExplorer::BuildConfiguration *)), - this, SLOT(removedBuildConfiguration(ProjectExplorer::Project *, ProjectExplorer::BuildConfiguration *))); + connect(p, SIGNAL(addedBuildConfiguration(ProjectExplorer::Project*,ProjectExplorer::BuildConfiguration*)), + this, SLOT(addedBuildConfiguration(ProjectExplorer::Project*,ProjectExplorer::BuildConfiguration*))); + connect(p, SIGNAL(removedBuildConfiguration(ProjectExplorer::Project*,ProjectExplorer::BuildConfiguration*)), + this, SLOT(removedBuildConfiguration(ProjectExplorer::Project*,ProjectExplorer::BuildConfiguration*))); connect(m_comboBox, SIGNAL(activated(int)), this, SLOT(changedIndex(int))); } diff --git a/src/plugins/projectexplorer/projectwindow.h b/src/plugins/projectexplorer/projectwindow.h index 558dbc7bb15..aec941d7664 100644 --- a/src/plugins/projectexplorer/projectwindow.h +++ b/src/plugins/projectexplorer/projectwindow.h @@ -98,9 +98,9 @@ private slots: void nameChanged(BuildConfiguration *bc); void activeConfigurationChanged(); void addedBuildConfiguration(ProjectExplorer::Project *project, - BuildConfiguration *bc); + ProjectExplorer::BuildConfiguration *bc); void removedBuildConfiguration(ProjectExplorer::Project *project, - BuildConfiguration *bc); + ProjectExplorer::BuildConfiguration *bc); void changedIndex(int newIndex); private: int buildConfigurationToIndex(BuildConfiguration *bc);