diff -r dee5afe5301f -r 3f74d0d4af4c src/gui/painting/qpathclipper.cpp --- a/src/gui/painting/qpathclipper.cpp Mon Mar 15 12:43:09 2010 +0200 +++ b/src/gui/painting/qpathclipper.cpp Thu Apr 08 14:19:33 2010 +0300 @@ -90,8 +90,6 @@ return p / qSqrt(p.x() * p.x() + p.y() * p.y()); } -static bool pathToRect(const QPainterPath &path, QRectF *rect = 0); - struct QIntersection { qreal alphaA; @@ -1660,7 +1658,7 @@ return qFuzzyCompare(a, b); } -static bool pathToRect(const QPainterPath &path, QRectF *rect) +bool QPathClipper::pathToRect(const QPainterPath &path, QRectF *rect) { if (path.elementCount() != 5) return false; @@ -1693,7 +1691,7 @@ return false; if (rect) - *rect = QRectF(QPointF(x1, y1), QPointF(x2, y2)); + rect->setCoords(x1, y1, x2, y2); return true; }