aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qbsprojectmanager/qbsbuildstep.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2022-06-29 15:20:34 +0200
committerhjk <hjk@qt.io>2022-06-30 06:24:18 +0000
commite22f50814d9954e7eeebc732642098a12319d3e6 (patch)
treed1313c4e92c55163de75e20acfbbcc0d8df45414 /src/plugins/qbsprojectmanager/qbsbuildstep.cpp
parenta12169a0062751aeb18675c95c69b3650d506562 (diff)
Utils: Hide some uses of FilePath::rawPath()
This basically inlines the current rawPath() implementation on the user code side, keeping behavior the same. Baby steps towards the originally intended swap of rawPath() and rawFilePath() implementations. Change-Id: Ib61887bfdc4485a17856c0dbc7c7c5dba7c3e0e3 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Diffstat (limited to 'src/plugins/qbsprojectmanager/qbsbuildstep.cpp')
-rw-r--r--src/plugins/qbsprojectmanager/qbsbuildstep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qbsprojectmanager/qbsbuildstep.cpp b/src/plugins/qbsprojectmanager/qbsbuildstep.cpp
index 3350fb6fd8..b930dbfe0c 100644
--- a/src/plugins/qbsprojectmanager/qbsbuildstep.cpp
+++ b/src/plugins/qbsprojectmanager/qbsbuildstep.cpp
@@ -796,7 +796,7 @@ void QbsBuildStepConfigWidget::changeUseDefaultInstallDir(bool useDefault)
if (useDefault)
config.remove(Constants::QBS_INSTALL_ROOT_KEY);
else
- config.insert(Constants::QBS_INSTALL_ROOT_KEY, installDirChooser->rawPath());
+ config.insert(Constants::QBS_INSTALL_ROOT_KEY, installDirChooser->rawFilePath().toString());
m_qbsStep->setQbsConfiguration(config);
m_ignoreChange = false;
}