summaryrefslogtreecommitdiffstats
path: root/src/gui/painting/qpaintengineex_p.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2009-10-09 19:05:27 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2009-10-09 19:05:27 (GMT)
commit5f4d30b2f0ee2c9e4cd9cb27d26298179d8ee3c9 (patch)
tree824b5a1f240ecf18e44e5bdc726d7c8eb6eea7ea /src/gui/painting/qpaintengineex_p.h
parentf2437d3aa6cc274b9e663801892fd4e40e693546 (diff)
downloadQt-5f4d30b2f0ee2c9e4cd9cb27d26298179d8ee3c9.zip
Qt-5f4d30b2f0ee2c9e4cd9cb27d26298179d8ee3c9.tar.gz
Qt-5f4d30b2f0ee2c9e4cd9cb27d26298179d8ee3c9.tar.bz2
Fix compilation with xlC 7: you can't forward-declare enums.
"../../include/QtGui/private/../../../src/gui/painting/qpaintengineex_p.h", line 77.10: 1540-0029 (S) The named enumeration is not defined.
Diffstat (limited to 'src/gui/painting/qpaintengineex_p.h')
-rw-r--r--src/gui/painting/qpaintengineex_p.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/gui/painting/qpaintengineex_p.h b/src/gui/painting/qpaintengineex_p.h
index 81ed06b..3ec9bd6 100644
--- a/src/gui/painting/qpaintengineex_p.h
+++ b/src/gui/painting/qpaintengineex_p.h
@@ -54,6 +54,7 @@
//
#include <QtGui/qpaintengine.h>
+#include <QtGui/qdrawutil.h>
#include <private/qpaintengine_p.h>
#include <private/qstroker_p.h>
@@ -71,12 +72,6 @@ class QPainterState;
class QPaintEngineExPrivate;
struct StrokeHandler;
-namespace QDrawPixmaps
-{
- struct Data;
- enum DrawingHint;
-}
-
struct QIntRect {
int x1, y1, x2, y2;
inline void set(const QRect &r) {