summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxtext_p.h
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-07-02 02:40:15 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-07-02 02:40:15 (GMT)
commitcf8871a52244884943c2d798dbe93fb181728bcd (patch)
tree2629be260a5b5907af49ba7a5b6f3dadfade64c8 /src/declarative/fx/qfxtext_p.h
parent4e9336d1f60089bffda7fca93a63d18ffce0a6fa (diff)
downloadQt-cf8871a52244884943c2d798dbe93fb181728bcd.zip
Qt-cf8871a52244884943c2d798dbe93fb181728bcd.tar.gz
Qt-cf8871a52244884943c2d798dbe93fb181728bcd.tar.bz2
Add smooth property to Text element.
Diffstat (limited to 'src/declarative/fx/qfxtext_p.h')
-rw-r--r--src/declarative/fx/qfxtext_p.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/fx/qfxtext_p.h b/src/declarative/fx/qfxtext_p.h
index dfaef63..c58705c 100644
--- a/src/declarative/fx/qfxtext_p.h
+++ b/src/declarative/fx/qfxtext_p.h
@@ -75,7 +75,7 @@ public:
QFxTextPrivate()
: _font(0), color((QRgb)0), style(QFxText::Normal), imgDirty(true),
hAlign(QFxText::AlignLeft), vAlign(QFxText::AlignTop), elideMode(Qt::ElideNone),
- dirty(false), wrap(false), richText(false), singleline(false), control(0), doc(0)
+ dirty(false), wrap(false), smooth(false), richText(false), singleline(false), control(0), doc(0)
{
}
@@ -125,6 +125,7 @@ public:
Qt::TextElideMode elideMode;
bool dirty;
bool wrap;
+ bool smooth;
bool richText;
bool singleline;
QTextControl *control;