Skip to content
Snippets Groups Projects
Commit 35665dd3 authored by ck's avatar ck
Browse files

Merge branch 'master' of scm.dev.nokia.troll.no:creator/mainline

parents 52d6e34b b583c3d4
No related branches found
No related tags found
No related merge requests found
...@@ -146,6 +146,7 @@ void BuildSettingsWidget::init() ...@@ -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 ...@@ -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: ...@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment