summaryrefslogtreecommitdiffstats
path: root/doc/tqptrvector.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
commitdcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch)
treed57fe27457a96451f1a67e2a2db268a441d917fc /doc/tqptrvector.doc
parent649c4c61a1f1f479f4532b196f68df476cef2680 (diff)
downloadtqt-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/tqptrvector.doc')
-rw-r--r--doc/tqptrvector.doc18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/tqptrvector.doc b/doc/tqptrvector.doc
index b6c9f2873..672b38309 100644
--- a/doc/tqptrvector.doc
+++ b/doc/tqptrvector.doc
@@ -167,7 +167,7 @@
/*!
\fn bool TQPtrVector::isEmpty() const
- Returns TRUE if the vector is empty; otherwise returns FALSE.
+ Returns true if the vector is empty; otherwise returns false.
\sa count()
*/
@@ -175,7 +175,7 @@
/*!
\fn bool TQPtrVector::isNull() const
- Returns TRUE if the vector is null; otherwise returns FALSE.
+ Returns true if the vector is null; otherwise returns false.
A null vector has size() == 0 and data() == 0.
@@ -191,8 +191,8 @@
Any items at position \a size or beyond in the vector are removed.
New positions are initialized to 0.
- Returns TRUE if successful, i.e. if the memory was successfully
- allocated; otherwise returns FALSE.
+ Returns true if successful, i.e. if the memory was successfully
+ allocated; otherwise returns false.
\sa size(), isNull()
*/
@@ -213,7 +213,7 @@
Removes the item at position \a i in the vector, if there is one.
\a i must be less than size().
- Returns TRUE if \a i is within range; otherwise returns FALSE.
+ Returns true if \a i is within range; otherwise returns false.
\sa take(), at()
*/
@@ -250,9 +250,9 @@
If \a size >= 0, the vector is first resized to \a size. By
default, \a size is -1.
- Returns TRUE if successful, i.e. \a size is the same as the
+ Returns true if successful, i.e. \a size is the same as the
current size, or \a size is larger and the memory has successfully
- been allocated; otherwise returns FALSE.
+ been allocated; otherwise returns false.
\sa resize(), insert(), isEmpty()
*/
@@ -425,7 +425,7 @@
/*!
\fn bool TQPtrVector::operator==( const TQPtrVector<type> &v ) const
- Returns TRUE if this vector and \a v are equal; otherwise returns
- FALSE.
+ Returns true if this vector and \a v are equal; otherwise returns
+ false.
*/