diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-06-11 08:47:07 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-06-11 08:47:07 (GMT) |
commit | 7e541e9e4832a26339a44ee55d325ba089717e17 (patch) | |
tree | 8ac3583740a6df8642b42d9759f7782fbdd9817a /src/declarative/qml/qmlinstruction_p.h | |
parent | aef2140573c5b68062db2f1a2cf968a1637344ae (diff) | |
download | Qt-7e541e9e4832a26339a44ee55d325ba089717e17.zip Qt-7e541e9e4832a26339a44ee55d325ba089717e17.tar.gz Qt-7e541e9e4832a26339a44ee55d325ba089717e17.tar.bz2 |
Skeleton for property deferring
Diffstat (limited to 'src/declarative/qml/qmlinstruction_p.h')
-rw-r--r-- | src/declarative/qml/qmlinstruction_p.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlinstruction_p.h b/src/declarative/qml/qmlinstruction_p.h index 0f1f697..e3b0dfe 100644 --- a/src/declarative/qml/qmlinstruction_p.h +++ b/src/declarative/qml/qmlinstruction_p.h @@ -139,6 +139,11 @@ public: PopFetchedObject, PopQList, + // + // Deferred creation + // + Defer, /* defer */ + // // Expression optimizations // @@ -270,6 +275,9 @@ public: int property; int object; } assignStackObject; + struct { + int deferCount; + } defer; }; void dump(QmlCompiledComponent *); |