aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/ios/iosdsymbuildstep.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-07-29 15:13:17 +0200
committerhjk <hjk@qt.io>2019-07-31 11:18:16 +0000
commit7d3091a7b9e42efc382f0c1d33e9a34931734ee2 (patch)
tree3bd8015366aa38e55fc3d89e661965ef1f8e7f5f /src/plugins/ios/iosdsymbuildstep.cpp
parentdde94019272d652079c598ef1e73fc90fb8806bf (diff)
ProjectExplorer: Remove ProjectConfiguration base from Target
Targets are different from {Run,Build,Deployment}Configurations, both regarding the level in the ProjectExplorer hierarchy, and also by the set of supported operations (e.g. aspects). Change-Id: Ia8490e2280a9ecc518395c5e48ce2fd5d6d58fd2 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/ios/iosdsymbuildstep.cpp')
-rw-r--r--src/plugins/ios/iosdsymbuildstep.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/ios/iosdsymbuildstep.cpp b/src/plugins/ios/iosdsymbuildstep.cpp
index 5c6f311a00..bdb8d7f9ee 100644
--- a/src/plugins/ios/iosdsymbuildstep.cpp
+++ b/src/plugins/ios/iosdsymbuildstep.cpp
@@ -255,6 +255,10 @@ IosDsymBuildStepConfigWidget::IosDsymBuildStepConfigWidget(IosDsymBuildStep *bui
if (pc && pc->isActive())
updateDetails();
});
+ connect(pro, &Project::activeTargetChanged, this, [this](Target *target) {
+ if (target && target->isActive())
+ updateDetails();
+ });
}
IosDsymBuildStepConfigWidget::~IosDsymBuildStepConfigWidget()