Skip to content
Snippets Groups Projects
Commit a84ebd12 authored by dt's avatar dt
Browse files

Fix show/hide of importing label

parent 5f05fb75
No related branches found
No related tags found
No related merge requests found
......@@ -153,6 +153,8 @@ void Qt4ProjectConfigWidget::init(ProjectExplorer::BuildConfiguration *bc)
this, SLOT(buildDirectoryChanged()));
disconnect(m_buildConfiguration, SIGNAL(qtVersionChanged()),
this, SLOT(qtVersionChanged()));
disconnect(m_buildConfiguration, SIGNAL(qmakeBuildConfigurationChanged()),
this, SLOT(updateImportLabel()));
}
m_buildConfiguration = static_cast<Qt4BuildConfiguration *>(bc);
......@@ -161,6 +163,8 @@ void Qt4ProjectConfigWidget::init(ProjectExplorer::BuildConfiguration *bc)
this, SLOT(buildDirectoryChanged()));
connect(m_buildConfiguration, SIGNAL(qtVersionChanged()),
this, SLOT(qtVersionChanged()));
connect(m_buildConfiguration, SIGNAL(qmakeBuildConfigurationChanged()),
this, SLOT(updateImportLabel()));
m_ui->nameLineEdit->setText(m_buildConfiguration->displayName());
......
......@@ -70,10 +70,10 @@ private slots:
void qtVersionsChanged();
void qtVersionChanged();
void buildDirectoryChanged();
void updateImportLabel();
private:
void updateDetails();
void updateToolChainCombo();
void updateImportLabel();
Ui::Qt4ProjectConfigWidget *m_ui;
QAbstractButton *m_browseButton;
Qt4BuildConfiguration *m_buildConfiguration;
......
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