aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qnx
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-08-27 13:47:24 +0200
committerhjk <hjk@qt.io>2019-08-29 05:42:13 +0000
commitae11f30b200e3a3994e04833df2a13b21e12c6bc (patch)
treec1f5ebdd161b290f0a06b94b4f017b5afb7eb0e0 /src/plugins/qnx
parent6c9f75ff4a6a98cb45fa48928b1d8ef25d3d14ad (diff)
ProjectExplorer: Proliferate FilePath
DeployableFile and fallout. Change-Id: I9a9c56e4a4ebf8f68df70d65da2e699efedfe907 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/qnx')
-rw-r--r--src/plugins/qnx/qnxrunconfiguration.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/qnx/qnxrunconfiguration.cpp b/src/plugins/qnx/qnxrunconfiguration.cpp
index 9648a64487..eba7121653 100644
--- a/src/plugins/qnx/qnxrunconfiguration.cpp
+++ b/src/plugins/qnx/qnxrunconfiguration.cpp
@@ -70,12 +70,12 @@ QnxRunConfiguration::QnxRunConfiguration(Target *target, Core::Id id)
auto updateTargetInformation = [this, target, exeAspect, symbolsAspect] {
- BuildTargetInfo bti = buildTargetInfo();
- QString localExecutable = bti.targetFilePath.toString();
- DeployableFile depFile = target->deploymentData().deployableForLocalFile(localExecutable);
+ const BuildTargetInfo bti = buildTargetInfo();
+ const FilePath localExecutable = bti.targetFilePath;
+ const DeployableFile depFile = target->deploymentData().deployableForLocalFile(localExecutable);
exeAspect->setExecutable(FilePath::fromString(depFile.remoteFilePath()));
- symbolsAspect->setValue(localExecutable);
+ symbolsAspect->setFileName(localExecutable);
emit enabledChanged();
};