diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-08-03 06:53:26 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-08-03 06:53:26 (GMT) |
commit | 14c57306bb0d9edd6c45cd142b49896f746fe9d1 (patch) | |
tree | b7a8eb759e553979634d2506274484cb1a13c7e1 /src/declarative/fx/qfxtext.cpp | |
parent | 018bc2baa05320c41d124785064064cd03fe8a43 (diff) | |
download | Qt-14c57306bb0d9edd6c45cd142b49896f746fe9d1.zip Qt-14c57306bb0d9edd6c45cd142b49896f746fe9d1.tar.gz Qt-14c57306bb0d9edd6c45cd142b49896f746fe9d1.tar.bz2 |
Move the 'smooth' property to QFxItem
Items currently using it are QFxImage, QFxText, QFxLineEdit, QFxTextEdit
and QFxPaintedItem.
Diffstat (limited to 'src/declarative/fx/qfxtext.cpp')
-rw-r--r-- | src/declarative/fx/qfxtext.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/declarative/fx/qfxtext.cpp b/src/declarative/fx/qfxtext.cpp index 1313dca..0c3f4e9 100644 --- a/src/declarative/fx/qfxtext.cpp +++ b/src/declarative/fx/qfxtext.cpp @@ -750,21 +750,6 @@ void QFxTextPrivate::checkImgCache() imgDirty = false; } -bool QFxText::smoothTransform() const -{ - Q_D(const QFxText); - return d->smooth; -} - -void QFxText::setSmoothTransform(bool s) -{ - Q_D(QFxText); - if (d->smooth == s) - return; - d->smooth = s; - update(); -} - void QFxText::paint(QPainter *p, const QStyleOptionGraphicsItem *, QWidget *) { Q_D(QFxText); |