forked from qt-creator/qt-creator
debugger: use an expandable tree in the debugger tooltip
This commit is contained in:
@@ -335,11 +335,6 @@ void testQList()
|
||||
lu.append(102);
|
||||
lu.append(102);
|
||||
lu.append(102);
|
||||
lu.append(102);
|
||||
lu.append(102);
|
||||
lu.append(102);
|
||||
lu.append(102);
|
||||
lu.append(102);
|
||||
|
||||
QList<uint> i;
|
||||
i.append(42);
|
||||
@@ -347,6 +342,18 @@ void testQList()
|
||||
i.append(44);
|
||||
i.append(45);
|
||||
|
||||
QList<ushort> ls;
|
||||
ls.append(42);
|
||||
ls.append(43);
|
||||
ls.append(44);
|
||||
ls.append(45);
|
||||
|
||||
QList<QChar> lc;
|
||||
lc.append(QChar('a'));
|
||||
lc.append(QChar('b'));
|
||||
lc.append(QChar('c'));
|
||||
lc.append(QChar('d'));
|
||||
|
||||
QList<qulonglong> l;
|
||||
l.append(42);
|
||||
l.append(43);
|
||||
|
||||
Reference in New Issue
Block a user