Doc: Fix minor typos in QRectF
Fix a couple incorrect references to the integer precision classes. Update snippet to use floating point precision classes. Task-number: QTBUG-51630 Change-Id: I9b08cfb68937a8e1179ee414d7981956ef7bc106 Reviewed-by: Martin Koller <kollix@aon.at> Reviewed-by: Michael Brüning <michael.bruning@qt.io> Reviewed-by: Marc Mutz <marc.mutz@kdab.com> Reviewed-by: Topi Reiniö <topi.reinio@qt.io>
This commit is contained in:
parent
9ffc9e306f
commit
c4f122927a
@ -55,6 +55,6 @@ QRect r2(QPoint(100, 200), QSize(11, 16));
|
||||
|
||||
|
||||
//! [1]
|
||||
QRectF r1(100, 200, 11, 16);
|
||||
QRectF r2(QPoint(100, 200), QSize(11, 16));
|
||||
QRectF r1(100.0, 200.1, 11.2, 16.3);
|
||||
QRectF r2(QPointF(100.0, 200.1), QSizeF(11.2, 16.3));
|
||||
//! [1]
|
||||
|
@ -1323,8 +1323,8 @@ QDebug operator<<(QDebug dbg, const QRect &r)
|
||||
rendering.
|
||||
|
||||
A QRectF can be constructed with a set of left, top, width and
|
||||
height integers, or from a QPoint and a QSize. The following code
|
||||
creates two identical rectangles.
|
||||
height coordinates, or from a QPointF and a QSizeF. The following
|
||||
code creates two identical rectangles.
|
||||
|
||||
\snippet code/src_corelib_tools_qrect.cpp 1
|
||||
|
||||
@ -1344,7 +1344,7 @@ QDebug operator<<(QDebug dbg, const QRect &r)
|
||||
translated copy of this rectangle.
|
||||
|
||||
The size() function returns the rectange's dimensions as a
|
||||
QSize. The dimensions can also be retrieved separately using the
|
||||
QSizeF. The dimensions can also be retrieved separately using the
|
||||
width() and height() functions. To manipulate the dimensions use
|
||||
the setSize(), setWidth() or setHeight() functions. Alternatively,
|
||||
the size can be changed by applying either of the functions
|
||||
|
Loading…
Reference in New Issue
Block a user