From 55c61e59f9bd6ca9614f39b60dd29f4250d93bb5 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 8 Oct 2018 08:24:06 +0200 Subject: [PATCH] Debugger: Fix wrong check in source path mapping Change-Id: I4b11795326371c9bc30d42cf2fbf29932639f5d6 Reviewed-by: Orgad Shaneh Reviewed-by: David Schulz --- src/plugins/debugger/debuggersourcepathmappingwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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