summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/debuggersourcepathmappingwidget.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/debugger/debuggersourcepathmappingwidget.cpp
parenta12169a0062751aeb18675c95c69b3650d506562 (diff)
downloadqt-creator-e22f50814d9954e7eeebc732642098a12319d3e6.tar.gz
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/debugger/debuggersourcepathmappingwidget.cpp')
-rw-r--r--src/plugins/debugger/debuggersourcepathmappingwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggersourcepathmappingwidget.cpp b/src/plugins/debugger/debuggersourcepathmappingwidget.cpp
index b5985ac214..853fc88b5e 100644
--- a/src/plugins/debugger/debuggersourcepathmappingwidget.cpp
+++ b/src/plugins/debugger/debuggersourcepathmappingwidget.cpp
@@ -334,7 +334,7 @@ QString DebuggerSourcePathMappingWidget::editSourceField() const
QString DebuggerSourcePathMappingWidget::editTargetField() const
{
- return m_targetChooser->rawPath();
+ return m_targetChooser->rawFilePath().toString();
}
void DebuggerSourcePathMappingWidget::setEditFieldMapping(const Mapping &m)