diff options
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: |