aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2014-04-09 17:15:47 +0200
committerhjk <hjk121@nokiamail.com>2014-04-09 17:32:25 +0200
commit7dce490546914cd5304508293094ce587f6f606e (patch)
tree68e3fdd892aec347e2c12b467b1ffa7471bf3e7d /share
parent697ec700373ef8a6afc9d07236f23a2f32ddf87c (diff)
Debugger: Fix internal type dumper
Change-Id: I5c9ad7c5f95980bb85e07f1ea6dddcdf8b8a19a2 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/debugger/creatortypes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qtcreator/debugger/creatortypes.py b/share/qtcreator/debugger/creatortypes.py
index 593386a037..14af7d44cc 100644
--- a/share/qtcreator/debugger/creatortypes.py
+++ b/share/qtcreator/debugger/creatortypes.py
@@ -74,7 +74,7 @@ def qdump__CPlusPlus__IntegerType(d, value):
d.putPlainChildren(value)
def qdump__CPlusPlus__NamedType(d, value):
- literal = downcast(value["_name"])
+ literal = d.downcast(value["_name"])
d.putValue(d.encodeCharArray(literal["_chars"]), Hex2EncodedLatin1)
d.putPlainChildren(value)