aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2018-08-21 13:38:57 +0200
committerhjk <hjk@qt.io>2018-08-21 13:32:23 +0000
commit0a3c88e918507a80291f9b38bf3d08f2bc59c37a (patch)
tree39f5213c4a8c647c21e52d4e4122250dbcd6cb0d
parent903e395a14595a186e86fc7c41e780a0c5901f8b (diff)
Adapt to upstream runconfig aspect setup changes
Change-Id: Id9c0c8046ccaebe8c718573a801c5823e0565da6 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
-rw-r--r--plugins/haskell/haskellrunconfiguration.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/haskell/haskellrunconfiguration.cpp b/plugins/haskell/haskellrunconfiguration.cpp
index 98a8317..e555c5f 100644
--- a/plugins/haskell/haskellrunconfiguration.cpp
+++ b/plugins/haskell/haskellrunconfiguration.cpp
@@ -68,10 +68,10 @@ HaskellRunConfiguration::HaskellRunConfiguration(Target *target, Core::Id id)
: RunConfiguration(target, id)
{
addExtraAspect(new HaskellExecutableAspect(this));
- addExtraAspect(new ArgumentsAspect(this, "Haskell.RunAspect.Arguments"));
- auto workingDirAspect = new WorkingDirectoryAspect(this, "Haskell.RunAspect.WorkingDirectory");
+ addExtraAspect(new ArgumentsAspect(this));
+ auto workingDirAspect = new WorkingDirectoryAspect(this);
workingDirAspect->setDefaultWorkingDirectory(target->project()->projectDirectory());
- addExtraAspect(new TerminalAspect(this, "Haskell.RunAspect.Terminal"));
+ addExtraAspect(new TerminalAspect(this));
addExtraAspect(new LocalEnvironmentAspect(this, LocalEnvironmentAspect::BaseEnvironmentModifier()));
}