summaryrefslogtreecommitdiffstats
path: root/doc/tqvaluevector.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-11-16 17:42:59 +0900
commit4d495175043c399fdca6e1bb4c74ef176fc76fb4 (patch)
tree119a6d76d177dade68b3744cb660fe26b33c9864 /doc/tqvaluevector.doc
parentcf2c8613706a3685266058db00c0e9f632c5bd24 (diff)
downloadtqt-4d495175043c399fdca6e1bb4c74ef176fc76fb4.tar.gz
tqt-4d495175043c399fdca6e1bb4c74ef176fc76fb4.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/tqvaluevector.doc')
-rw-r--r--doc/tqvaluevector.doc20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/tqvaluevector.doc b/doc/tqvaluevector.doc
index 6583cded6..0825e441e 100644
--- a/doc/tqvaluevector.doc
+++ b/doc/tqvaluevector.doc
@@ -413,7 +413,7 @@
/*!
\fn bool TQValueVector::empty() const
- Returns TRUE if the vector is empty; otherwise returns FALSE.
+ Returns true if the vector is empty; otherwise returns false.
Equivalent to size()==0, only faster.
This function is provided for STL compatibility. It is equivalent
@@ -425,7 +425,7 @@
/*!
\fn bool TQValueVector::isEmpty() const
- Returns TRUE if the vector is empty; returns FALSE otherwise.
+ Returns true if the vector is empty; returns false otherwise.
\sa count()
*/
@@ -493,9 +493,9 @@
Returns a reference to the element with index \a i. If \a ok is
non-null, and the index \a i is out of range, *\a ok is set to
- FALSE and the returned reference is undefined. If the index \a i
+ false and the returned reference is undefined. If the index \a i
is within the range of the vector, and \a ok is non-null, *\a ok
- is set to TRUE and the returned reference is well defined.
+ is set to true and the returned reference is well defined.
*/
/*!
@@ -505,9 +505,9 @@
Returns a const reference to the element with index \a i. If \a ok
is non-null, and the index \a i is out of range, *\a ok is set to
- FALSE and the returned reference is undefined. If the index \a i
+ false and the returned reference is undefined. If the index \a i
is within the range of the vector, and \a ok is non-null, *\a ok
- is set to TRUE and the returned reference is well defined.
+ is set to true and the returned reference is well defined.
*/
/*!
@@ -697,8 +697,8 @@
/*!
\fn bool TQValueVector::operator==( const TQValueVector<T>& x ) const
- Returns TRUE if each element in this vector equals each
- corresponding element in \a x; otherwise returns FALSE.
+ Returns true if each element in this vector equals each
+ corresponding element in \a x; otherwise returns false.
*/
/*!
@@ -706,8 +706,8 @@
\overload
- Returns TRUE if each element in this vector equals each
- corresponding element in \a x; otherwise returns FALSE.
+ Returns true if each element in this vector equals each
+ corresponding element in \a x; otherwise returns false.
*/