debugger: use an expandable tree in the debugger tooltip

This commit is contained in:
hjk
2009-06-24 12:31:09 +02:00
parent 1c5be603ff
commit 2a959f47a4
11 changed files with 420 additions and 154 deletions
+12 -5
View File
@@ -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);