aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/customexecutablerunconfiguration.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2018-09-12 10:09:41 +0200
committerhjk <hjk@qt.io>2018-09-13 07:32:22 +0000
commitf66770cde19579d2e6f2dc88ba9bb6abfe0d821f (patch)
tree9f17aac8d278b35881bd677e2f860ceca939a05c /src/plugins/projectexplorer/customexecutablerunconfiguration.cpp
parentbe656dd9cc028d1971f5524e14818efd84629c54 (diff)
ProjectExplorer: Pass macro expander to ArgumentsAspect::arguments
To remove the last user of IRCAspect::runConfiguration. Change-Id: I1390166730112008a4050877f96bb29f274e7ef1 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/customexecutablerunconfiguration.cpp')
-rw-r--r--src/plugins/projectexplorer/customexecutablerunconfiguration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/customexecutablerunconfiguration.cpp b/src/plugins/projectexplorer/customexecutablerunconfiguration.cpp
index 8fc195f5a7..c255c063be 100644
--- a/src/plugins/projectexplorer/customexecutablerunconfiguration.cpp
+++ b/src/plugins/projectexplorer/customexecutablerunconfiguration.cpp
@@ -251,7 +251,7 @@ Runnable CustomExecutableRunConfiguration::runnable() const
Runnable r;
r.executable = extraAspect<ExecutableAspect>()->executable().toString();
- r.commandLineArguments = extraAspect<ArgumentsAspect>()->arguments();
+ r.commandLineArguments = extraAspect<ArgumentsAspect>()->arguments(macroExpander());
r.environment = extraAspect<EnvironmentAspect>()->environment();
r.workingDirectory = workingDirectory.toString();
r.device = DeviceManager::instance()->defaultDevice(Constants::DESKTOP_DEVICE_TYPE);