diff options
author | Orgad Shaneh <[email protected]> | 2019-03-31 15:33:46 +0300 |
---|---|---|
committer | Orgad Shaneh <[email protected]> | 2019-04-01 06:07:18 +0000 |
commit | 2df4667620b6c961269ae59be6b853f049bba11d (patch) | |
tree | 12b296facbe874b2fdac9c4ffe189f8147df590c /src/plugins/debugger/debuggersourcepathmappingwidget.cpp | |
parent | 04f8c0946fdb662277fc5f87c1b4b13524d499b7 (diff) |
Debugger: Expand target mapping only when required
Store the unexpanded string in settings and expand on execution.
Change-Id: Ib3160a548b7501b22d120629a6376e2252df32e5
Reviewed-by: Christian Stenger <[email protected]>
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 5812763fc4c..fe1a5f541a8 100644 --- a/src/plugins/debugger/debuggersourcepathmappingwidget.cpp +++ b/src/plugins/debugger/debuggersourcepathmappingwidget.cpp @@ -294,7 +294,7 @@ QString DebuggerSourcePathMappingWidget::editSourceField() const QString DebuggerSourcePathMappingWidget::editTargetField() const { - return m_targetChooser->path(); + return m_targetChooser->rawPath(); } void DebuggerSourcePathMappingWidget::setEditFieldMapping(const Mapping &m) |