diff options
author | hjk <[email protected]> | 2022-05-11 16:51:46 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2022-05-20 07:06:10 +0000 |
commit | 8dacb123e0e7194b507e609c1016f8bcc3aaceaa (patch) | |
tree | 7aa8bf5e54ff131a038358f49ec47f76bf140c0f /src/plugins/ios/iosrunconfiguration.cpp | |
parent | a493970e05affcd33b2d16c07580205a479eb30a (diff) |
Utils: Pass MacroExpander to ArgumentsAspect constructor
In the past we wanted to keep the aspect constructor simple but
it turned out that exceptions were needed and accumulating, so those
are likely here to stay.
By passing also the MacroExpander to the ArgumentsAspect constructor
allows other single-purpose warts like the ProjectConfiguration::doPostInit()
machinery can be removed.
Change-Id: I148b0ca1ab0740270eecd0d3134620de65a86d4f
Reviewed-by: Jarek Kobus <[email protected]>
Diffstat (limited to 'src/plugins/ios/iosrunconfiguration.cpp')
-rw-r--r-- | src/plugins/ios/iosrunconfiguration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/ios/iosrunconfiguration.cpp b/src/plugins/ios/iosrunconfiguration.cpp index e54633f89fc..54347566996 100644 --- a/src/plugins/ios/iosrunconfiguration.cpp +++ b/src/plugins/ios/iosrunconfiguration.cpp @@ -83,7 +83,7 @@ IosRunConfiguration::IosRunConfiguration(Target *target, Id id) auto executableAspect = addAspect<ExecutableAspect>(target); executableAspect->setDisplayStyle(StringAspect::LabelDisplay); - addAspect<ArgumentsAspect>(); + addAspect<ArgumentsAspect>(macroExpander()); m_deviceTypeAspect = addAspect<IosDeviceTypeAspect>(this); |