diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-08 15:17:51 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-08 19:38:03 +0900 |
| commit | 7d612f7c91d55501276a385a30dbadb121e7bd9f (patch) | |
| tree | 4c6f1546e16db32779dfbf5c9e107b938faee6bb /src/kernel/tqguardedptr.cpp | |
| parent | 5a863a8932d14b99c5f838c4efa1618070d71b29 (diff) | |
| download | tqt-7d612f7c91d55501276a385a30dbadb121e7bd9f.tar.gz tqt-7d612f7c91d55501276a385a30dbadb121e7bd9f.zip | |
Replace TRUE/FALSE with boolean values true/false - part 8
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kernel/tqguardedptr.cpp')
| -rw-r--r-- | src/kernel/tqguardedptr.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
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<T> &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<T>& 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. */ /*! |
