diff options
author | Harald Fernengel <harald@trolltech.com> | 2009-08-20 15:37:55 +0200 |
---|---|---|
committer | Harald Fernengel <harald@trolltech.com> | 2009-08-20 17:12:07 +0200 |
commit | fe00645222c4a96a966c8f6938286cf136a6377a (patch) | |
tree | d640d30d2f1a854312f285f2dda631edb6cb3afa /src/gui/image/qpicture_p.h | |
parent | c2bde443f2510798de9d815af13d5947317fc7d1 (diff) | |
download | qt4-tools-fe00645222c4a96a966c8f6938286cf136a6377a.tar.gz |
Use QExplicitlySharedDataPointer wherever possible
Remove QScopedSharedPointer, this class will go soon.
Diffstat (limited to 'src/gui/image/qpicture_p.h')
-rw-r--r-- | src/gui/image/qpicture_p.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gui/image/qpicture_p.h b/src/gui/image/qpicture_p.h index f405d7fb51..0ab181c5f9 100644 --- a/src/gui/image/qpicture_p.h +++ b/src/gui/image/qpicture_p.h @@ -71,7 +71,6 @@ extern const char *qt_mfhdr_tag; class QPicturePrivate { - Q_DECLARE_PUBLIC(QPicture) friend class QPicturePaintEngine; friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &s, const QPicture &r); friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &s, QPicture &r); @@ -144,6 +143,7 @@ public: }; QPicturePrivate(); + QPicturePrivate(const QPicturePrivate &other); QAtomicInt ref; bool checkFormat(); @@ -162,8 +162,6 @@ public: QList<QPixmap> pixmap_list; QList<QBrush> brush_list; QList<QPen> pen_list; - - QPicture *q_ptr; }; QT_END_NAMESPACE |