summaryrefslogtreecommitdiffstats
path: root/doc/qvaluevector.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
commitb87533f9904c10f24d6b2e8177c00944e3efe15b (patch)
treec1106a381c851b51e86004698457aef1211b77be /doc/qvaluevector.doc
parent894037c3e68e1573a34183d936171f8cda5085f3 (diff)
downloadtqt-r14.1.x.tar.gz
tqt-r14.1.x.zip
Replace TRUE/FALSE with boolean values true/false - part 4r14.1.x
Manually cherry-picked from commit 4d495175 Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/qvaluevector.doc')
-rw-r--r--doc/qvaluevector.doc20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/qvaluevector.doc b/doc/qvaluevector.doc
index c4df61f85..07db80f32 100644
--- a/doc/qvaluevector.doc
+++ b/doc/qvaluevector.doc
@@ -413,7 +413,7 @@
/*!
\fn bool QValueVector::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 QValueVector::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 QValueVector::operator==( const QValueVector<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.
*/