summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qmath.qdoc
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2012-08-31 11:53:34 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-31 16:10:25 +0200
commit9aa67cf0c48ff8e9e73fc19c4dcd950961b5ad54 (patch)
tree767616f33dcb191df4e9a7688457e836a11c8c1b /src/corelib/kernel/qmath.qdoc
parent0a0157f5459ba61b5978fea90cad486757da3590 (diff)
Fix the name of the arguments of qAtan2 to match std::atan2
There is no change in functionality, just swapping of the names x and y. The std::atan2 function uses (y, x) in that order, so we should too. Task-number: QTBUG-27090 Change-Id: I7d4597a6c6909f574c517033f5d49fe17b7a7ead Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'src/corelib/kernel/qmath.qdoc')
-rw-r--r--src/corelib/kernel/qmath.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/kernel/qmath.qdoc b/src/corelib/kernel/qmath.qdoc
index cba19a803e..0df208dae5 100644
--- a/src/corelib/kernel/qmath.qdoc
+++ b/src/corelib/kernel/qmath.qdoc
@@ -114,9 +114,9 @@
*/
/*!
- \fn qreal qAtan2(qreal x, qreal y)
- Returns the arctangent of a point specified by the coordinates \a x and \a y.
- This function will return the angle and its direction.
+ \fn qreal qAtan2(qreal y, qreal x)
+ Returns the arctangent of a point specified by the coordinates \a y and \a x.
+ This function will return the angle (argument) of that point.
\relates <QtCore/qmath.h>
\sa qAtan()