diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2009-05-05 16:39:51 +0200 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2009-05-05 16:39:51 +0200 |
commit | bae65259762ae24619491440e2803e1af7ee7c52 (patch) | |
tree | 7e9488d53ae4839cc0e40207e635925c4dc09a23 /src/plugins/debugger/watchutils.h | |
parent | a24e3b70b38251d0e6fc33c0be0722fc978a301d (diff) | |
download | qt-creator-bae65259762ae24619491440e2803e1af7ee7c52.tar.gz |
Started on QObject dumping for CDB, make it smarter.
Try to find qobject_p.h, if it exists and use its structures
to determine the child offset.
Diffstat (limited to 'src/plugins/debugger/watchutils.h')
-rw-r--r-- | src/plugins/debugger/watchutils.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/debugger/watchutils.h b/src/plugins/debugger/watchutils.h index 47f73a8bb7..af0a20c3b7 100644 --- a/src/plugins/debugger/watchutils.h +++ b/src/plugins/debugger/watchutils.h @@ -76,8 +76,12 @@ struct QtDumperResult Child(); int valueEncoded; + int childCount; + bool valuedisabled; QString name; QString address; + QString exp; + QString type; QByteArray value; }; @@ -88,6 +92,7 @@ struct QtDumperResult QString iname; QString address; QString type; + QString displayedType; QByteArray value; int valueEncoded; bool valuedisabled; |