forked from qt-creator/qt-creator
Merge branch 'master' of scm.dev.nokia.troll.no:creator/mainline
This commit is contained in:
@@ -146,6 +146,7 @@ void BuildSettingsWidget::init()
|
|||||||
}
|
}
|
||||||
|
|
||||||
m_makeActiveLabel = new QLabel(this);
|
m_makeActiveLabel = new QLabel(this);
|
||||||
|
m_makeActiveLabel->setContentsMargins(m_leftMargin, 4, 0, 4);
|
||||||
m_makeActiveLabel->setVisible(false);
|
m_makeActiveLabel->setVisible(false);
|
||||||
vbox->addWidget(m_makeActiveLabel);
|
vbox->addWidget(m_makeActiveLabel);
|
||||||
|
|
||||||
|
@@ -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