diff options
| author | hjk <hjk@qt.io> | 2022-06-29 15:20:34 +0200 |
|---|---|---|
| committer | hjk <hjk@qt.io> | 2022-06-30 06:24:18 +0000 |
| commit | e22f50814d9954e7eeebc732642098a12319d3e6 (patch) | |
| tree | d1313c4e92c55163de75e20acfbbcc0d8df45414 /src/plugins/debugger/debuggersourcepathmappingwidget.cpp | |
| parent | a12169a0062751aeb18675c95c69b3650d506562 (diff) | |
| download | qt-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.cpp | 2 |
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) |
