aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/types/qqmlinstantiator_p_p.h
diff options
context:
space:
mode:
authorAlan Alpert <aalpert@blackberry.com>2013-05-01 17:30:53 -0700
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-09 22:14:05 +0200
commit84b233f992447aa9ac7e0067239793f6241c4017 (patch)
tree033710aa24aaaac22344682d07202b0d5b95ddac /src/qml/types/qqmlinstantiator_p_p.h
parent5af870b2459afc9cc934d9e79e80e2e49ff75049 (diff)
Make QQmlInstantiatorPrivate bools more space efficient
Change-Id: Ie7a4951d66763c55148f02c6c88241c8ad363a90 Reviewed-by: Andrew den Exter <andrew.den.exter@qinetic.com.au>
Diffstat (limited to 'src/qml/types/qqmlinstantiator_p_p.h')
-rw-r--r--src/qml/types/qqmlinstantiator_p_p.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/qml/types/qqmlinstantiator_p_p.h b/src/qml/types/qqmlinstantiator_p_p.h
index ac25ce809c..a7d6905a7e 100644
--- a/src/qml/types/qqmlinstantiator_p_p.h
+++ b/src/qml/types/qqmlinstantiator_p_p.h
@@ -75,11 +75,11 @@ public:
void _q_createdItem(int, QObject *);
void _q_modelUpdated(const QQmlChangeSet &, bool);
- bool componentComplete;
- bool effectiveReset;
- bool active;
- bool async;
- bool ownModel;
+ bool componentComplete:1;
+ bool effectiveReset:1;
+ bool active:1;
+ bool async:1;
+ bool ownModel:1;
QVariant model;
QQmlInstanceModel *instanceModel;
QQmlComponent *delegate;