aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/boot2qt/qdbrunconfiguration.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-08-27 13:50:15 +0200
committerhjk <hjk@qt.io>2019-08-29 05:42:37 +0000
commitf4c1c0e441a43e66300a2f2532c887ca28bbc99a (patch)
tree3214199ba55715ef4501d33df844747b2e9c5a26 /src/plugins/boot2qt/qdbrunconfiguration.cpp
parentae11f30b200e3a3994e04833df2a13b21e12c6bc (diff)
ProjectExplorer: Rename BaseStringAspect::{f,setF}ileName
... to filePath and setFilePath. In line with Utils::FilePath. Change-Id: I7115b91876542629c3d61c8259bbd8d9f4022fc1 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/boot2qt/qdbrunconfiguration.cpp')
-rw-r--r--src/plugins/boot2qt/qdbrunconfiguration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/boot2qt/qdbrunconfiguration.cpp b/src/plugins/boot2qt/qdbrunconfiguration.cpp
index 03fa4e8e42..d1abe58229 100644
--- a/src/plugins/boot2qt/qdbrunconfiguration.cpp
+++ b/src/plugins/boot2qt/qdbrunconfiguration.cpp
@@ -117,7 +117,7 @@ void QdbRunConfiguration::updateTargetInformation()
const DeployableFile depFile = target()->deploymentData().deployableForLocalFile(localExecutable);
aspect<ExecutableAspect>()->setExecutable(FilePath::fromString(depFile.remoteFilePath()));
- aspect<SymbolFileAspect>()->setFileName(localExecutable);
+ aspect<SymbolFileAspect>()->setFilePath(localExecutable);
}
QString QdbRunConfiguration::defaultDisplayName() const