diff options
author | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2009-12-15 12:50:01 (GMT) |
---|---|---|
committer | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2009-12-15 12:53:52 (GMT) |
commit | 4391014d4533e60dc4e5e413db50b21f68f4658c (patch) | |
tree | f82a40ea71e58ed44cb199daffe8305e7988b379 /src/gui/painting/qpathclipper.cpp | |
parent | 100ad353689b8203988c87afe30953d59bdad736 (diff) | |
download | Qt-4391014d4533e60dc4e5e413db50b21f68f4658c.zip Qt-4391014d4533e60dc4e5e413db50b21f68f4658c.tar.gz Qt-4391014d4533e60dc4e5e413db50b21f68f4658c.tar.bz2 |
qreal-ization
Using math wrapper functions instead direct call. This gives us top-level
control to what (single/double) precision we are effectively using.
Task-number: QTBUG-4894
Reviewed-by: janarve
Reviewed-by: Kim Motoyoshi Kalland
Diffstat (limited to 'src/gui/painting/qpathclipper.cpp')
-rw-r--r-- | src/gui/painting/qpathclipper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/painting/qpathclipper.cpp b/src/gui/painting/qpathclipper.cpp index 51d6195..a41ab6d 100644 --- a/src/gui/painting/qpathclipper.cpp +++ b/src/gui/painting/qpathclipper.cpp @@ -1209,7 +1209,7 @@ static qreal computeAngle(const QPointF &v) } #else // doesn't seem to be robust enough - return atan2(v.x(), v.y()) + Q_PI; + return qAtan2(v.x(), v.y()) + Q_PI; #endif } |