diff options
author | Benjamin Poulain <benjamin.poulain@nokia.com> | 2010-07-06 11:22:10 (GMT) |
---|---|---|
committer | Benjamin Poulain <benjamin.poulain@nokia.com> | 2010-07-07 09:57:10 (GMT) |
commit | 03f325217ab8d896327cb8a31f07df4633e9a485 (patch) | |
tree | 41e563addf5738a9f1f9b2e13ac8044c637270b3 /src/gui/image/qimage_p.h | |
parent | dad8e33546a209820da1f3d07a0e331e001bc23e (diff) | |
download | Qt-03f325217ab8d896327cb8a31f07df4633e9a485.zip Qt-03f325217ab8d896327cb8a31f07df4633e9a485.tar.gz Qt-03f325217ab8d896327cb8a31f07df4633e9a485.tar.bz2 |
Build fix, the header of QImageData did not declare QImageWriter.
Including this header in the SSE2 file broke the build because
QImageWriter was not declared.
Diffstat (limited to 'src/gui/image/qimage_p.h')
-rw-r--r-- | src/gui/image/qimage_p.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/image/qimage_p.h b/src/gui/image/qimage_p.h index 5272848..da535aa 100644 --- a/src/gui/image/qimage_p.h +++ b/src/gui/image/qimage_p.h @@ -61,6 +61,8 @@ #include <QMap> #endif +class QImageWriter; + QT_BEGIN_NAMESPACE struct Q_GUI_EXPORT QImageData { // internal image data |