summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qcore_foundation.mm
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@qt.io>2017-01-27 14:41:21 +0100
committerNico Vertriest <nico.vertriest@qt.io>2017-02-02 09:55:03 +0000
commit538ef73664afda2f904b5cc0c16452cc3943cf7e (patch)
treed073558991aa9fe4a9fefd0246e84309b40b1039 /src/corelib/kernel/qcore_foundation.mm
parent1b599660219d8b54df5d075bf7aa69bfd3bf282b (diff)
Doc: corrected minor link issues
qcore_foundation.mm: - Can't link to 'fromCGPoint()' - Undocumented parameter 'point' in QPointF::fromCGPoint() - Can't link to 'fromCGRect()' - Undocumented parameter 'rect' in QRectF::fromCGRect() - Can't link to 'fromCGSize()' - Undocumented parameter 'size' in QSizeF::fromCGSize() Change-Id: Ie48f04c7b990634f8c5a836100b1be7854848bb4 Reviewed-by: Venugopal Shivashankar <Venugopal.Shivashankar@qt.io>
Diffstat (limited to 'src/corelib/kernel/qcore_foundation.mm')
-rw-r--r--src/corelib/kernel/qcore_foundation.mm12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/corelib/kernel/qcore_foundation.mm b/src/corelib/kernel/qcore_foundation.mm
index f5ccd1c1f2..7f591a22c7 100644
--- a/src/corelib/kernel/qcore_foundation.mm
+++ b/src/corelib/kernel/qcore_foundation.mm
@@ -427,7 +427,7 @@ NSDate *QDateTime::toNSDate() const
Creates a CGRect from a QRect.
- \sa fromCGRect()
+ \sa QRectF::fromCGRect()
*/
CGRect QRect::toCGRect() const Q_DECL_NOTHROW
{
@@ -449,7 +449,7 @@ CGRect QRectF::toCGRect() const Q_DECL_NOTHROW
/*!
\since 5.8
- Creates a QRectF from a CGRect.
+ Creates a QRectF from CGRect \a rect.
\sa toCGRect()
*/
@@ -465,7 +465,7 @@ QRectF QRectF::fromCGRect(CGRect rect) Q_DECL_NOTHROW
Creates a CGPoint from a QPoint.
- \sa fromCGPoint()
+ \sa QPointF::fromCGPoint()
*/
CGPoint QPoint::toCGPoint() const Q_DECL_NOTHROW
{
@@ -487,7 +487,7 @@ CGPoint QPointF::toCGPoint() const Q_DECL_NOTHROW
/*!
\since 5.8
- Creates a QRectF from a CGPoint.
+ Creates a QRectF from CGPoint \a point.
\sa toCGPoint()
*/
@@ -503,7 +503,7 @@ QPointF QPointF::fromCGPoint(CGPoint point) Q_DECL_NOTHROW
Creates a CGSize from a QSize.
- \sa fromCGSize()
+ \sa QSizeF::fromCGSize()
*/
CGSize QSize::toCGSize() const Q_DECL_NOTHROW
{
@@ -525,7 +525,7 @@ CGSize QSizeF::toCGSize() const Q_DECL_NOTHROW
/*!
\since 5.8
- Creates a QRectF from a CGSize.
+ Creates a QRectF from \a size.
\sa toCGSize()
*/