diff options
Diffstat (limited to 'doc/man/man3/tqpointarray.3qt')
-rw-r--r-- | doc/man/man3/tqpointarray.3qt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqpointarray.3qt b/doc/man/man3/tqpointarray.3qt index 1131431d5..2a1f26dcd 100644 --- a/doc/man/man3/tqpointarray.3qt +++ b/doc/man/man3/tqpointarray.3qt @@ -28,7 +28,7 @@ Inherits TQMemArray<TQPoint>. .BI "\fBTQPointArray\fR ( const TQPointArray & a )" .br .ti -1c -.BI "\fBTQPointArray\fR ( const TQRect & r, bool closed = FALSE )" +.BI "\fBTQPointArray\fR ( const TQRect & r, bool closed = false )" .br .ti -1c .BI "TQPointArray & \fBoperator=\fR ( const TQPointArray & a )" @@ -129,12 +129,12 @@ See also resize() and isNull(). Constructs a shallow copy of the point array \fIa\fR. .PP See also copy() and detach(). -.SH "TQPointArray::TQPointArray ( const TQRect & r, bool closed = FALSE )" +.SH "TQPointArray::TQPointArray ( const TQRect & r, bool closed = false )" Constructs a point array from the rectangle \fIr\fR. .PP -If \fIclosed\fR is FALSE, then the point array just contains the following four points in the listed order: r.topLeft(), r.topRight(), r.bottomRight() and r.bottomLeft(). +If \fIclosed\fR is false, then the point array just contains the following four points in the listed order: r.topLeft(), r.topRight(), r.bottomRight() and r.bottomLeft(). .PP -If \fIclosed\fR is TRUE, then a fifth point is set to r.topLeft(). +If \fIclosed\fR is true, then a fifth point is set to r.topLeft(). .SH "TQPointArray::~TQPointArray ()" Destroys the point array. .SH "TQRect TQPointArray::boundingRect () const" @@ -178,7 +178,7 @@ Returns the point at position \fIindex\fR within the array. .SH "bool TQPointArray::putPoints ( int index, int nPoints, int firstx, int firsty, ... )" Copies \fInPoints\fR points from the variable argument list into this point array from position \fIindex\fR, and resizes the point array if \fCindex+nPoints\fR exceeds the size of the array. .PP -Returns TRUE if successful, or FALSE if the array could not be resized (typically due to lack of memory). +Returns true if successful, or false if the array could not be resized (typically due to lack of memory). .PP The example code creates an array with three points (4,5), (6,7) and (8,9), by expanding the array from 1 to 3 points: .PP |