summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/painting/qpaintengineex_p.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/gui/painting/qpaintengineex_p.h b/src/gui/painting/qpaintengineex_p.h
index 71a2ec344f..31c6b30ec4 100644
--- a/src/gui/painting/qpaintengineex_p.h
+++ b/src/gui/painting/qpaintengineex_p.h
@@ -71,19 +71,6 @@ class QPaintEngineExPrivate;
class QStaticTextItem;
struct StrokeHandler;
-struct QIntRect {
- int x1, y1, x2, y2;
- inline void set(const QRect &r) {
- x1 = r.x();
- y1 = r.y();
- x2 = r.right() + 1;
- y2 = r.bottom() + 1;
- // We will assume normalized for later...
- Q_ASSERT(x2 >= x1);
- Q_ASSERT(y2 >= y1);
- }
-};
-
#ifndef QT_NO_DEBUG_STREAM
QDebug Q_GUI_EXPORT &operator<<(QDebug &, const QVectorPath &path);
#endif