summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qmlgraphicstext_p_p.h
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-12-07 03:08:22 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-12-07 03:08:22 (GMT)
commit560d32ddd80d5c6b21cd39ae93ea3f580da613da (patch)
treedf27accf531654c0c7b0f6606fcbbd386a8a2344 /src/declarative/graphicsitems/qmlgraphicstext_p_p.h
parentf3cbbdc8055c97704d1369c2f435b236c85e1821 (diff)
downloadQt-560d32ddd80d5c6b21cd39ae93ea3f580da613da.zip
Qt-560d32ddd80d5c6b21cd39ae93ea3f580da613da.tar.gz
Qt-560d32ddd80d5c6b21cd39ae93ea3f580da613da.tar.bz2
Minor cleanup/optimization.
Diffstat (limited to 'src/declarative/graphicsitems/qmlgraphicstext_p_p.h')
-rw-r--r--src/declarative/graphicsitems/qmlgraphicstext_p_p.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/declarative/graphicsitems/qmlgraphicstext_p_p.h b/src/declarative/graphicsitems/qmlgraphicstext_p_p.h
index 0ddae57..6fbee50 100644
--- a/src/declarative/graphicsitems/qmlgraphicstext_p_p.h
+++ b/src/declarative/graphicsitems/qmlgraphicstext_p_p.h
@@ -101,11 +101,11 @@ public:
QPixmap imgStyleCache;
QmlGraphicsText::HAlignment hAlign;
QmlGraphicsText::VAlignment vAlign;
- QmlGraphicsText::TextElideMode elideMode;
- bool dirty;
- bool wrap;
- bool richText;
- bool singleline;
+ QmlGraphicsText::TextElideMode elideMode;
+ bool dirty:1;
+ bool wrap:1;
+ bool richText:1;
+ bool singleline:1;
QTextControl *control;
QTextDocument *doc;
QTextLayout layout;