diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2010-08-16 11:33:16 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2010-08-16 11:45:50 (GMT) |
commit | f7a501515fcf1dafecb88a40e18721ea14fd0a13 (patch) | |
tree | 8f36b6de76f9dc3d650fbd4c6a58b30773459328 /src/declarative/qml/qdeclarativeenginedebug_p.h | |
parent | 7e395e4f5a89dd43d1b7b88f12e0fa4107756d54 (diff) | |
download | Qt-f7a501515fcf1dafecb88a40e18721ea14fd0a13.zip Qt-f7a501515fcf1dafecb88a40e18721ea14fd0a13.tar.gz Qt-f7a501515fcf1dafecb88a40e18721ea14fd0a13.tar.bz2 |
QtDeclarative debugging: Add an option not to stream the properties of an object.
Streaming all the properties is too slow, and we do not need them
in the debugger of creator.
Reviewed-by: Lasse Holmstedt
Diffstat (limited to 'src/declarative/qml/qdeclarativeenginedebug_p.h')
-rw-r--r-- | src/declarative/qml/qdeclarativeenginedebug_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativeenginedebug_p.h b/src/declarative/qml/qdeclarativeenginedebug_p.h index ea35b40..aa450f3 100644 --- a/src/declarative/qml/qdeclarativeenginedebug_p.h +++ b/src/declarative/qml/qdeclarativeenginedebug_p.h @@ -103,7 +103,7 @@ private Q_SLOTS: private: void buildObjectList(QDataStream &, QDeclarativeContext *); - void buildObjectDump(QDataStream &, QObject *, bool); + void buildObjectDump(QDataStream &, QObject *, bool, bool); QDeclarativeObjectData objectData(QObject *); QDeclarativeObjectProperty propertyData(QObject *, int); QVariant valueContents(const QVariant &defaultValue) const; |