diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-10-29 06:21:39 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-10-29 06:21:39 (GMT) |
commit | 1dce8e5fa590a5264d7e5d8a5898bde72022c911 (patch) | |
tree | 64049dd475ccb888e0fa52efe618b55eec42d5fd /src/declarative/util/qmlpropertychanges.cpp | |
parent | bcafd3739844fb7b22de3a92dd8c00e384eaa122 (diff) | |
download | Qt-1dce8e5fa590a5264d7e5d8a5898bde72022c911.zip Qt-1dce8e5fa590a5264d7e5d8a5898bde72022c911.tar.gz Qt-1dce8e5fa590a5264d7e5d8a5898bde72022c911.tar.bz2 |
Save a little more memory.
Diffstat (limited to 'src/declarative/util/qmlpropertychanges.cpp')
-rw-r--r-- | src/declarative/util/qmlpropertychanges.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/declarative/util/qmlpropertychanges.cpp b/src/declarative/util/qmlpropertychanges.cpp index 7e1f15c..0ac168b 100644 --- a/src/declarative/util/qmlpropertychanges.cpp +++ b/src/declarative/util/qmlpropertychanges.cpp @@ -127,11 +127,12 @@ public: QObject *object; QByteArray data; - bool decoded; - void decode(); - bool restore; - bool isExplicit; + bool decoded : 1; + bool restore : 1; + bool isExplicit : 1; + + void decode(); QList<QPair<QByteArray, QVariant> > properties; QList<QPair<QByteArray, QmlExpression *> > expressions; |