summaryrefslogtreecommitdiffstats
path: root/doc/html/tqptrqueue.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqptrqueue.html')
-rw-r--r--doc/html/tqptrqueue.html26
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/html/tqptrqueue.html b/doc/html/tqptrqueue.html
index 5a4dbdc4c..8c003caf6 100644
--- a/doc/html/tqptrqueue.html
+++ b/doc/html/tqptrqueue.html
@@ -80,33 +80,33 @@ tail of the queue with <a href="#enqueue">enqueue</a>() and retrieved from the h
<h3 class=fn><a name="TQPtrQueue"></a>TQPtrQueue::TQPtrQueue ()
</h3>
-<p> Creates an empty queue with <a href="#autoDelete">autoDelete</a>() set to FALSE.
+<p> Creates an empty queue with <a href="#autoDelete">autoDelete</a>() set to false.
<h3 class=fn><a name="TQPtrQueue-2"></a>TQPtrQueue::TQPtrQueue ( const&nbsp;<a href="tqptrqueue.html">TQPtrQueue</a>&lt;type&gt;&nbsp;&amp;&nbsp;queue )
</h3>
<p> Creates a queue from <em>queue</em>.
<p> Only the pointers are copied; the items are not. The <a href="#autoDelete">autoDelete</a>()
-flag is set to FALSE.
+flag is set to false.
<h3 class=fn><a name="~TQPtrQueue"></a>TQPtrQueue::~TQPtrQueue ()
</h3>
<p> Destroys the queue. Items in the queue are deleted if <a href="#autoDelete">autoDelete</a>()
-is TRUE.
+is true.
<h3 class=fn>bool <a name="autoDelete"></a>TQPtrQueue::autoDelete () const
</h3>
<p> Returns the setting of the auto-delete option. The default is
-FALSE.
+false.
<p> <p>See also <a href="#setAutoDelete">setAutoDelete</a>().
<h3 class=fn>void <a name="clear"></a>TQPtrQueue::clear ()
</h3>
<p> Removes all items from the queue, and deletes them if <a href="#autoDelete">autoDelete</a>()
-is TRUE.
+is true.
<p> <p>See also <a href="#remove">remove</a>().
<h3 class=fn>uint <a name="count"></a>TQPtrQueue::count () const
@@ -145,7 +145,7 @@ changed. Returns 0 if the queue is empty.
<h3 class=fn>bool <a name="isEmpty"></a>TQPtrQueue::isEmpty () const
</h3>
-<p> Returns TRUE if the queue is empty; otherwise returns FALSE.
+<p> Returns true if the queue is empty; otherwise returns false.
<p> <p>See also <a href="#count">count</a>(), <a href="#dequeue">dequeue</a>(), and <a href="#head">head</a>().
<h3 class=fn><a name="operator-type-*"></a>TQPtrQueue::operator type * () const
@@ -162,7 +162,7 @@ changed. Returns 0 if the queue is empty.
queue.
<p> This queue is first cleared and then each item in <em>queue</em> is
enqueued to this queue. Only the pointers are copied.
-<p> <b>Warning:</b> The <a href="#autoDelete">autoDelete</a>() flag is not modified. If it it TRUE for
+<p> <b>Warning:</b> The <a href="#autoDelete">autoDelete</a>() flag is not modified. If it it true for
both <em>queue</em> and this queue, deleting the two lists will cause <em>double-deletion</em> of the items.
<h3 class=fn><a href="tqdatastream.html">TQDataStream</a>&nbsp;&amp; <a name="read"></a>TQPtrQueue::read ( <a href="tqdatastream.html">TQDataStream</a>&nbsp;&amp;&nbsp;s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a>&nbsp;&amp;&nbsp;item )<tt> [virtual protected]</tt>
@@ -176,20 +176,20 @@ reference to the stream.
<h3 class=fn>bool <a name="remove"></a>TQPtrQueue::remove ()
</h3>
-<p> Removes the head item from the queue, and returns TRUE if there
-was an item, i.e. the queue wasn't empty; otherwise returns FALSE.
-<p> The item is deleted if <a href="#autoDelete">autoDelete</a>() is TRUE.
+<p> Removes the head item from the queue, and returns true if there
+was an item, i.e. the queue wasn't empty; otherwise returns false.
+<p> The item is deleted if <a href="#autoDelete">autoDelete</a>() is true.
<p> <p>See also <a href="#head">head</a>(), <a href="#isEmpty">isEmpty</a>(), and <a href="#dequeue">dequeue</a>().
<h3 class=fn>void <a name="setAutoDelete"></a>TQPtrQueue::setAutoDelete ( bool&nbsp;enable )
</h3>
-<p> Sets the queue to auto-delete its contents if <em>enable</em> is TRUE
-and not to delete them if <em>enable</em> is FALSE.
+<p> Sets the queue to auto-delete its contents if <em>enable</em> is true
+and not to delete them if <em>enable</em> is false.
<p> If auto-deleting is turned on, all the items in a queue are
deleted when the queue itself is deleted. This can be quite
convenient if the queue has the only pointer to the items.
-<p> The default setting is FALSE, for safety. If you turn it on, be
+<p> The default setting is false, for safety. If you turn it on, be
careful about copying the queue: you might find yourself with two
queues deleting the same items.
<p> <p>See also <a href="#autoDelete">autoDelete</a>().