From 7d612f7c91d55501276a385a30dbadb121e7bd9f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 8 Dec 2025 15:17:51 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 8 Signed-off-by: Michele Calgaro --- src/kernel/tqguardedptr.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/kernel/tqguardedptr.cpp') diff --git a/src/kernel/tqguardedptr.cpp b/src/kernel/tqguardedptr.cpp index a08fe1aae..ab18f5ed2 100644 --- a/src/kernel/tqguardedptr.cpp +++ b/src/kernel/tqguardedptr.cpp @@ -147,9 +147,9 @@ \fn bool TQGuardedPtr::operator==( const TQGuardedPtr &p ) const Equality operator; implements traditional pointer semantics. - Returns TRUE if both \a p and this guarded pointer are 0, or if + Returns true if both \a p and this guarded pointer are 0, or if both \a p and this pointer point to the same object; otherwise - returns FALSE. + returns false. \sa operator!=() */ @@ -158,15 +158,15 @@ \fn bool TQGuardedPtr::operator!= ( const TQGuardedPtr& p ) const Inequality operator; implements pointer semantics, the negation of - operator==(). Returns TRUE if \a p and this guarded pointer are - not pointing to the same object; otherwise returns FALSE. + operator==(). Returns true if \a p and this guarded pointer are + not pointing to the same object; otherwise returns false. */ /*! \fn bool TQGuardedPtr::isNull() const - Returns \c TRUE if the referenced object has been destroyed or if - there is no referenced object; otherwise returns FALSE. + Returns \c true if the referenced object has been destroyed or if + there is no referenced object; otherwise returns false. */ /*! -- cgit v1.2.3