Drop connections to active target and build config changes

... for build step related widgets. These are specifig to a build step
which in turn is only interested in its own build config and target.

Change-Id: I5ec277ba279932d18a615e528acffaccdc41e307
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2019-08-02 15:30:51 +02:00
parent d115276b34
commit 65f2f8a2b4
5 changed files with 0 additions and 42 deletions

View File

@@ -121,15 +121,6 @@ public:
connect(m_buildStep->buildConfiguration(), &BuildConfiguration::environmentChanged,
this, &IosBuildStepConfigWidget::updateDetails);
Project *pro = m_buildStep->target()->project();
connect(pro, &Project::activeBuildConfigurationChanged,
this, &IosBuildStepConfigWidget::updateDetails);
connect(pro, &Project::activeTargetChanged, this, [this](Target *target) {
if (target && target->isActive())
updateDetails();
});
}
private: