diff options
author | Christian Stenger <[email protected]> | 2018-10-08 08:24:06 +0200 |
---|---|---|
committer | Christian Stenger <[email protected]> | 2018-10-08 07:26:56 +0000 |
commit | 55c61e59f9bd6ca9614f39b60dd29f4250d93bb5 (patch) | |
tree | 818edaf008f12dc085e7d38ed622f4a4299c56ba /src/plugins/debugger/debuggersourcepathmappingwidget.cpp | |
parent | c7b65c69b10c966897cef1e62a908407f69db383 (diff) |
Debugger: Fix wrong check in source path mapping
Change-Id: I4b11795326371c9bc30d42cf2fbf29932639f5d6
Reviewed-by: Orgad Shaneh <[email protected]>
Reviewed-by: David Schulz <[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 67915d8cfad..4d53e55f2d2 100644 --- a/src/plugins/debugger/debuggersourcepathmappingwidget.cpp +++ b/src/plugins/debugger/debuggersourcepathmappingwidget.cpp @@ -134,7 +134,7 @@ SourcePathMap SourcePathMappingModel::sourcePathMap() const bool SourcePathMappingModel::isNewPlaceHolder(const Mapping &m) const { const QLatin1Char lessThan('<'); - const QLatin1Char greaterThan('<'); + const QLatin1Char greaterThan('>'); return m.first.isEmpty() || m.first.startsWith(lessThan) || m.first.endsWith(greaterThan) || m.first == m_newSourcePlaceHolder |