diff options
author | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-10-30 05:13:18 (GMT) |
---|---|---|
committer | Rhys Weatherley <rhys.weatherley@nokia.com> | 2009-10-30 05:13:18 (GMT) |
commit | a9f7e08ab08ce25413b85272526907f7347e6fe3 (patch) | |
tree | fa7922030b5b1517c5d61b653915cfce90e1dd19 | |
parent | 2833d72c3d0e67317b9aba3de59f0e90317ecb12 (diff) | |
download | Qt-a9f7e08ab08ce25413b85272526907f7347e6fe3.zip Qt-a9f7e08ab08ce25413b85272526907f7347e6fe3.tar.gz Qt-a9f7e08ab08ce25413b85272526907f7347e6fe3.tar.bz2 |
OpenVG pixmap filter classes don't need to be exported.
Reviewed-by: trustme
-rw-r--r-- | src/openvg/qpixmapfilter_vg_p.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/openvg/qpixmapfilter_vg_p.h b/src/openvg/qpixmapfilter_vg_p.h index efbbc7b..29dd37e 100644 --- a/src/openvg/qpixmapfilter_vg_p.h +++ b/src/openvg/qpixmapfilter_vg_p.h @@ -61,7 +61,7 @@ QT_BEGIN_NAMESPACE #if !defined(QT_SHIVAVG) -class Q_OPENVG_EXPORT QVGPixmapConvolutionFilter : public QPixmapConvolutionFilter +class QVGPixmapConvolutionFilter : public QPixmapConvolutionFilter { Q_OBJECT public: @@ -71,7 +71,7 @@ public: void draw(QPainter *painter, const QPointF &dest, const QPixmap &src, const QRectF &srcRect) const; }; -class Q_OPENVG_EXPORT QVGPixmapColorizeFilter : public QPixmapColorizeFilter +class QVGPixmapColorizeFilter : public QPixmapColorizeFilter { Q_OBJECT public: @@ -81,7 +81,7 @@ public: void draw(QPainter *painter, const QPointF &dest, const QPixmap &src, const QRectF &srcRect) const; }; -class Q_OPENVG_EXPORT QVGPixmapDropShadowFilter : public QPixmapDropShadowFilter +class QVGPixmapDropShadowFilter : public QPixmapDropShadowFilter { Q_OBJECT public: @@ -91,7 +91,7 @@ public: void draw(QPainter *p, const QPointF &pos, const QPixmap &px, const QRectF &src) const; }; -class Q_OPENVG_EXPORT QVGPixmapBlurFilter : public QPixmapBlurFilter +class QVGPixmapBlurFilter : public QPixmapBlurFilter { Q_OBJECT public: |