summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqpointarray.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-26 11:44:58 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-30 14:26:34 +0900
commit6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch)
tree0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqpointarray.3qt
parentff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff)
downloadtqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.tar.gz
tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.zip
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqpointarray.3qt')
-rw-r--r--doc/man/man3/tqpointarray.3qt10
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