summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxpainteditem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/fx/qfxpainteditem.cpp')
-rw-r--r--src/declarative/fx/qfxpainteditem.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/declarative/fx/qfxpainteditem.cpp b/src/declarative/fx/qfxpainteditem.cpp
index 2bd17bc..8c04074 100644
--- a/src/declarative/fx/qfxpainteditem.cpp
+++ b/src/declarative/fx/qfxpainteditem.cpp
@@ -85,11 +85,6 @@ QT_BEGIN_NAMESPACE
*/
/*!
- \property QFxPaintedItem::smooth
- \brief Setting for whether smooth scaling is enabled.
-*/
-
-/*!
Marks areas of the cache that intersect with the given \a rect as dirty and
in need of being refreshed.
@@ -120,17 +115,6 @@ void QFxPaintedItem::clearCache()
}
/*!
- Returns if smooth scaling of the cache contents is enabled.
-
- \sa setSmooth()
-*/
-bool QFxPaintedItem::isSmooth() const
-{
- Q_D(const QFxPaintedItem);
- return d->smooth;
-}
-
-/*!
Returns the size of the contents.
\sa setContentsSize()
@@ -142,20 +126,6 @@ QSize QFxPaintedItem::contentsSize() const
}
/*!
- If \a smooth is true sets the image item to enable smooth scaling of
- the cache contents.
-
- \sa isSmooth()
-*/
-void QFxPaintedItem::setSmooth(bool smooth)
-{
- Q_D(QFxPaintedItem);
- if (d->smooth == smooth) return;
- d->smooth = smooth;
- update();
-}
-
-/*!
Sets the size of the contents to the given \a size.
\sa contentsSize()