summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tquuid.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-31 13:38:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-31 13:43:03 +0900
commit6e4a70d41a2636ce99a1da7b6827ac5685ed3186 (patch)
treeb029ebf1d5be6d1ac0ee361e7bfb68a7dbed0eec /doc/man/man3/tquuid.3qt
parent81ade129093a279e6537db25710583fd2bba9427 (diff)
downloadtqt-6e4a70d41a2636ce99a1da7b6827ac5685ed3186.tar.gz
tqt-6e4a70d41a2636ce99a1da7b6827ac5685ed3186.zip
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked and manually edited from commit 6dd781c483eea56f51ae0eff47d857976b5d0f0d)
Diffstat (limited to 'doc/man/man3/tquuid.3qt')
-rw-r--r--doc/man/man3/tquuid.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tquuid.3qt b/doc/man/man3/tquuid.3qt
index c9cb61008..2f1e64bb7 100644
--- a/doc/man/man3/tquuid.3qt
+++ b/doc/man/man3/tquuid.3qt
@@ -88,7 +88,7 @@ In Qt, UUIDs are wrapped by the QUuid struct which provides convenience function
.PP
UUIDs generated by QUuid, are based on the Random version of the DCE (Distributed Computing Environment) standard.
.PP
-UUIDs can be constructed from numeric values or from strings, or using the static createUuid() function. They can be converted to a string with toString(). UUIDs have a variant() and a version(), and null UUIDs return TRUE from isNull().
+UUIDs can be constructed from numeric values or from strings, or using the static createUuid() function. They can be converted to a string with toString(). UUIDs have a variant() and a version(), and null UUIDs return true from isNull().
.SS "Member Type Documentation"
.SH "QUuid::Variant"
This enum defines the variant of the UUID, which is the scheme which defines the layout of the 128-bits value.
@@ -140,23 +140,23 @@ On Windows, the new UUID is extremely likely to be unique on the same or any oth
.PP
See also variant() and version().
.SH "bool QUuid::isNull () const"
-Returns TRUE if this is the null UUID {00000000-0000-0000-0000-000000000000}; otherwise returns FALSE.
+Returns true if this is the null UUID {00000000-0000-0000-0000-000000000000}; otherwise returns false.
.SH "QUuid::operator TQString () const"
Returns the string representation of the uuid.
.PP
See also toString().
.SH "bool QUuid::operator!= ( const QUuid & other ) const"
-Returns TRUE if this QUuid and the \fIother\fR QUuid are different; otherwise returns FALSE.
+Returns true if this QUuid and the \fIother\fR QUuid are different; otherwise returns false.
.SH "bool QUuid::operator< ( const QUuid & other ) const"
-Returns TRUE if this QUuid is of the same variant, and lexicographically before the \fIother\fR QUuid; otherwise returns FALSE.
+Returns true if this QUuid is of the same variant, and lexicographically before the \fIother\fR QUuid; otherwise returns false.
.PP
See also variant().
.SH "QUuid & QUuid::operator= ( const QUuid & uuid )"
Assigns the value of \fIuuid\fR to this QUuid object.
.SH "bool QUuid::operator== ( const QUuid & other ) const"
-Returns TRUE if this QUuid and the \fIother\fR QUuid are identical; otherwise returns FALSE.
+Returns true if this QUuid and the \fIother\fR QUuid are identical; otherwise returns false.
.SH "bool QUuid::operator> ( const QUuid & other ) const"
-Returns TRUE if this QUuid is of the same variant, and lexicographically after the \fIother\fR QUuid; otherwise returns FALSE.
+Returns true if this QUuid is of the same variant, and lexicographically after the \fIother\fR QUuid; otherwise returns false.
.PP
See also variant().
.SH "TQString QUuid::toString () const"