From 4d495175043c399fdca6e1bb4c74ef176fc76fb4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 6 Aug 2025 11:29:57 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Signed-off-by: Michele Calgaro --- doc/html/tqguardedptr.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/tqguardedptr.html') diff --git a/doc/html/tqguardedptr.html b/doc/html/tqguardedptr.html index 992cd31ae..365435620 100644 --- a/doc/html/tqguardedptr.html +++ b/doc/html/tqguardedptr.html @@ -130,8 +130,8 @@ pointed to.

bool TQGuardedPtr::isNull () const

-

Returns TRUE if the referenced object has been destroyed or if -there is no referenced object; otherwise returns FALSE. +

Returns true if the referenced object has been destroyed or if +there is no referenced object; otherwise returns false.

TQGuardedPtr::operator T * () const

@@ -144,8 +144,8 @@ is required.

Inequality operator; implements pointer semantics, the negation of -operator==(). Returns TRUE if p and this guarded pointer are -not pointing to the same object; otherwise returns FALSE. +operator==(). Returns true if p and this guarded pointer are +not pointing to the same object; otherwise returns false.

T & TQGuardedPtr::operator* () const

@@ -175,9 +175,9 @@ object as p points to.

Equality operator; implements traditional pointer semantics. -Returns TRUE if both p and this guarded pointer are 0, or if +Returns true if both p and this guarded pointer are 0, or if both p and this pointer point to the same object; otherwise -returns FALSE. +returns false.

See also operator!=(). -- cgit v1.2.3