forked from qt-creator/qt-creator
debugger: show vtable ptr in hex, also with gdb
Task-number: QTCREATORBUG-6109 Change-Id: I9df2ddcd47e3551b23af20d2199b45fbee34bf9f Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -428,7 +428,7 @@ QString WatchModel::formattedValue(const WatchData &data) const
|
||||
if (data.type == "va_list")
|
||||
return value;
|
||||
|
||||
if (!isPointerType(data.type) && !isVTablePointer(data.type)) {
|
||||
if (!isPointerType(data.type) && !data.isVTablePointer()) {
|
||||
bool ok = false;
|
||||
qulonglong integer = value.toULongLong(&ok, 0);
|
||||
if (ok)
|
||||
|
||||
Reference in New Issue
Block a user