aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/debugger/cdbbridge.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/qtcreator/debugger/cdbbridge.py')
-rw-r--r--share/qtcreator/debugger/cdbbridge.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/share/qtcreator/debugger/cdbbridge.py b/share/qtcreator/debugger/cdbbridge.py
index f73140dc0f..aa76d69892 100644
--- a/share/qtcreator/debugger/cdbbridge.py
+++ b/share/qtcreator/debugger/cdbbridge.py
@@ -514,7 +514,10 @@ class Dumper(DumperBase):
raise Exception("cdb does not support calling functions")
def nameForCoreId(self, id):
- idName = cdbext.call('Cored4!Core::nameForId(%d)' % id)
+ for dll in ['Utilsd4', 'Utils4']:
+ idName = cdbext.call('%s!Utils::nameForId(%d)' % (dll, id))
+ if idName is not None:
+ break
return self.fromNativeValue(idName)
def putCallItem(self, name, rettype, value, func, *args):