aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2018-07-02 12:08:05 +0200
committerChristian Stenger <christian.stenger@qt.io>2018-07-02 10:17:48 +0000
commit65a4333f2ccc269f72fe6768e930d183ee2ad3a8 (patch)
treebf218117db0afd8b94dec686b80cf2afd07c28a2 /share
parent9e6fe45ad923f71c7c8cc145d7ad45da299c018a (diff)
Dumper: Fix detection of Qt namespace
Task-number: QTCREATORBUG-19620 Change-Id: Icca654714b70c69522b51998be21cff80bc29fac Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/debugger/gdbbridge.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qtcreator/debugger/gdbbridge.py b/share/qtcreator/debugger/gdbbridge.py
index fc771930d3..117f5fcfdd 100644
--- a/share/qtcreator/debugger/gdbbridge.py
+++ b/share/qtcreator/debugger/gdbbridge.py
@@ -990,7 +990,7 @@ class Dumper(DumperBase):
if self.isWindowsTarget():
qtCoreMatch = re.match('.*Qt5?Core[^/.]*d?\.dll', name)
else:
- qtCoreMatch = re.match('.*/libQt5?Core[^/.]\.so', name)
+ qtCoreMatch = re.match('.*/libQt5?Core[^/.]*\.so', name)
if qtCoreMatch is not None:
self.handleQtCoreLoaded(objfile)