diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-26 11:44:58 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-30 14:26:34 +0900 |
| commit | 6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch) | |
| tree | 0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tquuid.3qt | |
| parent | ff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff) | |
| download | tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.tar.gz tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.zip | |
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tquuid.3qt')
| -rw-r--r-- | doc/man/man3/tquuid.3qt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tquuid.3qt b/doc/man/man3/tquuid.3qt index f3c56efc3..c3d80a4db 100644 --- a/doc/man/man3/tquuid.3qt +++ b/doc/man/man3/tquuid.3qt @@ -88,7 +88,7 @@ In Qt, UUIDs are wrapped by the TQUuid struct which provides convenience functio .PP UUIDs generated by TQUuid, 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 "TQUuid::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 TQUuid::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 "TQUuid::operator TQString () const" Returns the string representation of the uuid. .PP See also toString(). .SH "bool TQUuid::operator!= ( const TQUuid & other ) const" -Returns TRUE if this TQUuid and the \fIother\fR TQUuid are different; otherwise returns FALSE. +Returns true if this TQUuid and the \fIother\fR TQUuid are different; otherwise returns false. .SH "bool TQUuid::operator< ( const TQUuid & other ) const" -Returns TRUE if this TQUuid is of the same variant, and lexicographically before the \fIother\fR TQUuid; otherwise returns FALSE. +Returns true if this TQUuid is of the same variant, and lexicographically before the \fIother\fR TQUuid; otherwise returns false. .PP See also variant(). .SH "TQUuid & TQUuid::operator= ( const TQUuid & uuid )" Assigns the value of \fIuuid\fR to this TQUuid object. .SH "bool TQUuid::operator== ( const TQUuid & other ) const" -Returns TRUE if this TQUuid and the \fIother\fR TQUuid are identical; otherwise returns FALSE. +Returns true if this TQUuid and the \fIother\fR TQUuid are identical; otherwise returns false. .SH "bool TQUuid::operator> ( const TQUuid & other ) const" -Returns TRUE if this TQUuid is of the same variant, and lexicographically after the \fIother\fR TQUuid; otherwise returns FALSE. +Returns true if this TQUuid is of the same variant, and lexicographically after the \fIother\fR TQUuid; otherwise returns false. .PP See also variant(). .SH "TQString TQUuid::toString () const" |
