diff options
author | Jason Barron <jbarron@trolltech.com> | 2009-07-09 11:15:38 +0200 |
---|---|---|
committer | Jason Barron <jbarron@trolltech.com> | 2009-07-09 11:15:38 +0200 |
commit | 4d0d43f50123cb10728b3d3910ec1772cc00db54 (patch) | |
tree | 9d800c9140303264531017f8dc3ac40c8ba1dee3 /src/openvg | |
parent | b9696905fd62b5cf66392cd9f6757d4ae97a87db (diff) | |
download | qt4-tools-4d0d43f50123cb10728b3d3910ec1772cc00db54.tar.gz |
Another fix for the include bug in Symbian.
This header is included by the VG graphics system plugin and since that
exists in a different module, the header inclusion bug rears its ugly
head again and we need to workaround it by making it a system include.
Diffstat (limited to 'src/openvg')
-rw-r--r-- | src/openvg/qpixmapdata_vg_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvg/qpixmapdata_vg_p.h b/src/openvg/qpixmapdata_vg_p.h index bb019be7c4..ebd769ef91 100644 --- a/src/openvg/qpixmapdata_vg_p.h +++ b/src/openvg/qpixmapdata_vg_p.h @@ -54,7 +54,7 @@ // #include <QtGui/private/qpixmap_raster_p.h> -#include "qvg_p.h" +#include <private/qvg_p.h> #if !defined(QT_NO_EGL) #include <QtGui/private/qegl_p.h> #endif |