aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2018-09-10 13:42:18 +0200
committerhjk <hjk@qt.io>2018-09-13 07:34:46 +0000
commit5a6fcac7163df6d598edb6c069135619e04969ef (patch)
tree9f40a2ce8d9b4e45e2f530028369ede6d760d131
parent1af5ae098325b46a2651c292bf798b4cf7224ebc (diff)
Adapt to upsream LocalEnvironmentAspect ctor change
Change-Id: I1733078240018cfe0e4036dca8d88e8cdec5ba91 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
-rw-r--r--plugins/haskell/haskellrunconfiguration.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/haskell/haskellrunconfiguration.cpp b/plugins/haskell/haskellrunconfiguration.cpp
index 3b568b7..a0a3313 100644
--- a/plugins/haskell/haskellrunconfiguration.cpp
+++ b/plugins/haskell/haskellrunconfiguration.cpp
@@ -58,8 +58,8 @@ HaskellExecutableAspect::HaskellExecutableAspect(RunConfiguration *rc)
HaskellRunConfiguration::HaskellRunConfiguration(Target *target, Core::Id id)
: RunConfiguration(target, id)
{
- auto envAspect =
- addAspect<LocalEnvironmentAspect>(LocalEnvironmentAspect::BaseEnvironmentModifier());
+ auto envAspect = addAspect<LocalEnvironmentAspect>
+ (target, LocalEnvironmentAspect::BaseEnvironmentModifier());
auto executableAspect = addAspect<HaskellExecutableAspect>();
connect(target, &Target::applicationTargetsChanged, this, [this, target, executableAspect] {