diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
commit | dcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch) | |
tree | d57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/tqpointarray.html | |
parent | 649c4c61a1f1f479f4532b196f68df476cef2680 (diff) | |
download | tqt-rename/true-false-4.tar.gz tqt-rename/true-false-4.zip |
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqpointarray.html')
-rw-r--r-- | doc/html/tqpointarray.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/tqpointarray.html b/doc/html/tqpointarray.html index afd3ecd46..8ca61305f 100644 --- a/doc/html/tqpointarray.html +++ b/doc/html/tqpointarray.html @@ -41,7 +41,7 @@ body { background: #ffffff; color: black; } <li class=fn><a href="#~TQPointArray"><b>~TQPointArray</b></a> ()</li> <li class=fn><a href="#TQPointArray-2"><b>TQPointArray</b></a> ( int size )</li> <li class=fn><a href="#TQPointArray-3"><b>TQPointArray</b></a> ( const TQPointArray & a )</li> -<li class=fn><a href="#TQPointArray-4"><b>TQPointArray</b></a> ( const TQRect & r, bool closed = FALSE )</li> +<li class=fn><a href="#TQPointArray-4"><b>TQPointArray</b></a> ( const TQRect & r, bool closed = false )</li> <li class=fn>TQPointArray & <a href="#operator-eq"><b>operator=</b></a> ( const TQPointArray & a )</li> <li class=fn>TQPointArray <a href="#copy"><b>copy</b></a> () const</li> <li class=fn>void <a href="#translate"><b>translate</b></a> ( int dx, int dy )</li> @@ -116,13 +116,13 @@ null array if <em>size</em> == 0. <p> Constructs a <a href="shclass.html#shallow-copy">shallow copy</a> of the point array <em>a</em>. <p> <p>See also <a href="#copy">copy</a>() and <a href="tqmemarray.html#detach">detach</a>(). -<h3 class=fn><a name="TQPointArray-4"></a>TQPointArray::TQPointArray ( const <a href="tqrect.html">TQRect</a> & r, bool closed = FALSE ) +<h3 class=fn><a name="TQPointArray-4"></a>TQPointArray::TQPointArray ( const <a href="tqrect.html">TQRect</a> & r, bool closed = false ) </h3> Constructs a point array from the rectangle <em>r</em>. -<p> If <em>closed</em> is FALSE, then the point array just contains the +<p> If <em>closed</em> 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(). -<p> If <em>closed</em> is TRUE, then a fifth point is set to r.topLeft(). +<p> If <em>closed</em> is true, then a fifth point is set to r.topLeft(). <h3 class=fn><a name="~TQPointArray"></a>TQPointArray::~TQPointArray () </h3> @@ -202,7 +202,7 @@ This is an overloaded member function, provided for convenience. It behaves esse Copies <em>nPoints</em> points from the variable argument list into this point array from position <em>index</em>, and resizes the point array if <tt>index+nPoints</tt> exceeds the size of the array. -<p> Returns TRUE if successful, or FALSE if the array could not be +<p> Returns true if successful, or false if the array could not be resized (typically due to lack of memory). <p> 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: |