forked from qt-creator/qt-creator
debugger: fix dumper for QList<T*>
This commit is contained in:
@@ -1392,7 +1392,7 @@ static void qDumpQList(QDumper &d)
|
||||
if (innerTypeIsPointer) {
|
||||
void *p = ldata.d->array + i + pdata->begin;
|
||||
P(d, "saddr", p);
|
||||
if (p) {
|
||||
if (*(void**)p) {
|
||||
//P(d, "value","@" << p);
|
||||
qDumpInnerValue(d, strippedInnerType.data(), deref(p));
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user