diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-07-17 01:48:14 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-07-17 01:48:14 (GMT) |
commit | 1cea1e158e212f7182586c2963d7e28747d0140c (patch) | |
tree | 33652df2877499203422b9a74e4c6a5df891412b /src/declarative/fx/qfximage.h | |
parent | eb9f53486a999aa6e56b115e6ea2ff8b7b107259 (diff) | |
download | Qt-1cea1e158e212f7182586c2963d7e28747d0140c.zip Qt-1cea1e158e212f7182586c2963d7e28747d0140c.tar.gz Qt-1cea1e158e212f7182586c2963d7e28747d0140c.tar.bz2 |
Remove non-functioning opaque property.
Diffstat (limited to 'src/declarative/fx/qfximage.h')
-rw-r--r-- | src/declarative/fx/qfximage.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/declarative/fx/qfximage.h b/src/declarative/fx/qfximage.h index 925a520..378c20d 100644 --- a/src/declarative/fx/qfximage.h +++ b/src/declarative/fx/qfximage.h @@ -64,8 +64,8 @@ class Q_DECLARATIVE_EXPORT QFxImage : public QFxItem Q_PROPERTY(QFxScaleGrid *scaleGrid READ scaleGrid) Q_PROPERTY(bool tile READ isTiled WRITE setTiled) Q_PROPERTY(QPixmap pixmap READ pixmap WRITE setPixmap DESIGNABLE false) - Q_PROPERTY(bool opaque READ isOpaque WRITE setOpaque) Q_PROPERTY(bool smooth READ smoothTransform WRITE setSmoothTransform) + public: QFxImage(QFxItem *parent=0); ~QFxImage(); @@ -78,9 +78,6 @@ public: QPixmap pixmap() const; void setPixmap(const QPixmap &); - bool isOpaque() const; - void setOpaque(bool); - bool smoothTransform() const; void setSmoothTransform(bool); |