diff options
author | hjk <[email protected]> | 2019-06-20 17:19:12 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2019-06-21 10:32:31 +0000 |
commit | 1396c6e8e99d69291117b31fe5d31636ff8831ff (patch) | |
tree | 01e7206aea1b889ae1d0b3e1d79dd6b666ef9018 /src/plugins/ios/iosrunner.cpp | |
parent | 18eb0b39c517019c9fec711c055b5d42f20aae10 (diff) |
ProjectExplorer: Use Utils::FileName for Runnable::executable
Change-Id: I584bc18aa19a4c9886af7b13e95052dfd4350b34
Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/ios/iosrunner.cpp')
-rw-r--r-- | src/plugins/ios/iosrunner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/ios/iosrunner.cpp b/src/plugins/ios/iosrunner.cpp index 5c343099219..8c2ab2bb63e 100644 --- a/src/plugins/ios/iosrunner.cpp +++ b/src/plugins/ios/iosrunner.cpp @@ -384,7 +384,7 @@ IosQmlProfilerSupport::IosQmlProfilerSupport(RunControl *runControl) auto iosRunConfig = qobject_cast<IosRunConfiguration *>(runControl->runConfiguration()); Runnable runnable; - runnable.executable = iosRunConfig->localExecutable().toUserOutput(); + runnable.executable = iosRunConfig->localExecutable(); runnable.commandLineArguments = runControl->aspect<ArgumentsAspect>()->arguments(iosRunConfig->macroExpander()); runControl->setDisplayName(iosRunConfig->applicationName()); @@ -480,7 +480,7 @@ void IosDebugSupport::start() const bool cppDebug = isCppDebugging(); const bool qmlDebug = isQmlDebugging(); if (cppDebug) { - setInferiorExecutable(iosRunConfig->localExecutable().toString()); + setInferiorExecutable(iosRunConfig->localExecutable()); setRemoteChannel("connect://localhost:" + gdbServerPort.toString()); QString bundlePath = iosRunConfig->bundleDirectory().toString(); |