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/tqptrstack.doc | |
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/tqptrstack.doc')
-rw-r--r-- | doc/tqptrstack.doc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/tqptrstack.doc b/doc/tqptrstack.doc index f1675cdb2..c6dcf7f07 100644 --- a/doc/tqptrstack.doc +++ b/doc/tqptrstack.doc @@ -81,7 +81,7 @@ \fn TQPtrStack::~TQPtrStack () Destroys the stack. All items will be deleted if autoDelete() is - TRUE. + true. */ /*! @@ -89,14 +89,14 @@ Sets the contents of this stack by making a shallow copy of another stack \a s. Elements currently in this stack will be - deleted if autoDelete() is TRUE. + deleted if autoDelete() is true. */ /*! \fn bool TQPtrStack::isEmpty () const - Returns TRUE if the stack contains no elements; otherwise returns - FALSE. + Returns true if the stack contains no elements; otherwise returns + false. */ /*! @@ -116,8 +116,8 @@ \fn bool TQPtrStack::remove () Removes the top item from the stack and deletes it if autoDelete() - is TRUE. Returns TRUE if there was an item to pop; otherwise - returns FALSE. + is true. Returns true if there was an item to pop; otherwise + returns false. \sa clear() */ @@ -126,7 +126,7 @@ \fn void TQPtrStack::clear() Removes all items from the stack, deleting them if autoDelete() is - TRUE. + true. \sa remove() */ @@ -177,8 +177,8 @@ Defines whether this stack auto-deletes its contents. The same as TQPtrCollection::setAutoDelete(). - If \a enable is TRUE the stack auto-deletes its contents; if \a - enable is FALSE the stack does not delete its contents. + If \a enable is true the stack auto-deletes its contents; if \a + enable is false the stack does not delete its contents. \sa autoDelete() */ |