Commit 84b233f9 authored by Alan Alpert's avatar Alan Alpert Committed by The Qt Project
Browse files

Make QQmlInstantiatorPrivate bools more space efficient


Change-Id: Ie7a4951d66763c55148f02c6c88241c8ad363a90
Reviewed-by: default avatarAndrew den Exter <andrew.den.exter@qinetic.com.au>
parent 5af870b2
No related merge requests found
Showing with 5 additions and 5 deletions
......@@ -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;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment