forked from qt-creator/qt-creator
Debugger: Fix accessing member function
Amends 975f5886a6
.
Change-Id: I0e8f5a9ab0ccf76fc095e0e05bfbdb838a7583d3
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
committed by
David Schulz
parent
59f124eb07
commit
49a498c0a6
@@ -129,7 +129,7 @@ class Dumper(DumperBase):
|
|||||||
# read raw memory in case the integerString can not be interpreted
|
# read raw memory in case the integerString can not be interpreted
|
||||||
pass
|
pass
|
||||||
if val.type.code == TypeCodeEnum:
|
if val.type.code == TypeCodeEnum:
|
||||||
val.ldisplay = enumValue(nativeValue)
|
val.ldisplay = self.enumValue(nativeValue)
|
||||||
val.isBaseClass = val.name == val.type.name
|
val.isBaseClass = val.name == val.type.name
|
||||||
val.nativeValue = nativeValue
|
val.nativeValue = nativeValue
|
||||||
val.laddress = nativeValue.address()
|
val.laddress = nativeValue.address()
|
||||||
|
Reference in New Issue
Block a user