summaryrefslogtreecommitdiffstats
path: root/src/gui/painting
diff options
context:
space:
mode:
authorSamuel Rødal <sroedal@trolltech.com>2009-11-05 12:10:19 (GMT)
committerSamuel Rødal <sroedal@trolltech.com>2009-11-11 11:17:28 (GMT)
commit223b5de63e56c6c3dfbc5000b460baa653ab3f75 (patch)
tree593e205d3fa06067eea4ce838ffd50f4098ef341 /src/gui/painting
parent71d05ae1f212793b59c2f0fcb68ec5f21732073e (diff)
downloadQt-223b5de63e56c6c3dfbc5000b460baa653ab3f75.zip
Qt-223b5de63e56c6c3dfbc5000b460baa653ab3f75.tar.gz
Qt-223b5de63e56c6c3dfbc5000b460baa653ab3f75.tar.bz2
Fixed compilation on AIX 6.1 with xlC 10.1
Task-number: QTBUG-3368 Reviewed-by: Thiago Macieira
Diffstat (limited to 'src/gui/painting')
-rw-r--r--src/gui/painting/qpathclipper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/painting/qpathclipper.cpp b/src/gui/painting/qpathclipper.cpp
index ab2dc33..51d6195 100644
--- a/src/gui/painting/qpathclipper.cpp
+++ b/src/gui/painting/qpathclipper.cpp
@@ -1650,7 +1650,7 @@ static void clear(QWingedEdge& list, int edge, QPathEdge::Traversal traversal)
template <typename InputIterator>
InputIterator qFuzzyFind(InputIterator first, InputIterator last, qreal val)
{
- while (first != last && !qFuzzyCompare(qreal(*first), qreal(val)))
+ while (first != last && !QT_PREPEND_NAMESPACE(qFuzzyCompare)(qreal(*first), qreal(val)))
++first;
return first;
}