summaryrefslogtreecommitdiffstats
path: root/src/plugins/imageformats
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-07-04 09:24:25 (GMT)
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-07-04 09:26:35 (GMT)
commit4cdd831191a22604486fa895c57532f319a56b96 (patch)
treecd451d1b5b40b47b21fd78bab940ce538736e5d4 /src/plugins/imageformats
parent306db146152c7b01b86fa7588be9941c47daead3 (diff)
downloadQt-4cdd831191a22604486fa895c57532f319a56b96.zip
Qt-4cdd831191a22604486fa895c57532f319a56b96.tar.gz
Qt-4cdd831191a22604486fa895c57532f319a56b96.tar.bz2
make image handler includes private
now that they live in gui/image/ instead of plugins/imageformats/, the handlers need to get the usual _p suffix.
Diffstat (limited to 'src/plugins/imageformats')
-rw-r--r--src/plugins/imageformats/gif/main.cpp2
-rw-r--r--src/plugins/imageformats/jpeg/main.cpp2
-rw-r--r--src/plugins/imageformats/mng/main.cpp2
-rw-r--r--src/plugins/imageformats/tiff/main.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/imageformats/gif/main.cpp b/src/plugins/imageformats/gif/main.cpp
index 3bb0bf4..99a9528 100644
--- a/src/plugins/imageformats/gif/main.cpp
+++ b/src/plugins/imageformats/gif/main.cpp
@@ -47,7 +47,7 @@
#ifdef QT_NO_IMAGEFORMAT_GIF
#undef QT_NO_IMAGEFORMAT_GIF
#endif
-#include "qgifhandler.h"
+#include <qgifhandler_p.h>
QT_BEGIN_NAMESPACE
diff --git a/src/plugins/imageformats/jpeg/main.cpp b/src/plugins/imageformats/jpeg/main.cpp
index 2a45cb0..8eb3f03 100644
--- a/src/plugins/imageformats/jpeg/main.cpp
+++ b/src/plugins/imageformats/jpeg/main.cpp
@@ -47,7 +47,7 @@
#ifdef QT_NO_IMAGEFORMAT_JPEG
#undef QT_NO_IMAGEFORMAT_JPEG
#endif
-#include "qjpeghandler.h"
+#include <qjpeghandler_p.h>
QT_BEGIN_NAMESPACE
diff --git a/src/plugins/imageformats/mng/main.cpp b/src/plugins/imageformats/mng/main.cpp
index 84f085c..dd62ba5 100644
--- a/src/plugins/imageformats/mng/main.cpp
+++ b/src/plugins/imageformats/mng/main.cpp
@@ -47,7 +47,7 @@
#ifdef QT_NO_IMAGEFORMAT_MNG
#undef QT_NO_IMAGEFORMAT_MNG
#endif
-#include "qmnghandler.h"
+#include <qmnghandler_p.h>
#include <qiodevice.h>
#include <qbytearray.h>
diff --git a/src/plugins/imageformats/tiff/main.cpp b/src/plugins/imageformats/tiff/main.cpp
index fbcbd72..c022abe 100644
--- a/src/plugins/imageformats/tiff/main.cpp
+++ b/src/plugins/imageformats/tiff/main.cpp
@@ -47,7 +47,7 @@
#ifdef QT_NO_IMAGEFORMAT_TIFF
#undef QT_NO_IMAGEFORMAT_TIFF
#endif
-#include "qtiffhandler.h"
+#include <qtiffhandler_p.h>
QT_BEGIN_NAMESPACE