Remove unused QIntRect.

I can't find any uses of this anywhere, in either Qt 4 or Qt 5.

Change-Id: Ibf747b57b4afdd81e11631e87a80dcab5ac12f69
Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
This commit is contained in:
Robin Burchell 2012-04-11 10:21:05 +02:00 committed by Qt by Nokia
parent 94519a441c
commit 2573e9c81d

View File

@ -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