summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqguardedptr.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqguardedptr.3qt')
-rw-r--r--doc/man/man3/tqguardedptr.3qt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man3/tqguardedptr.3qt b/doc/man/man3/tqguardedptr.3qt
index c2823a27b..4d874c93c 100644
--- a/doc/man/man3/tqguardedptr.3qt
+++ b/doc/man/man3/tqguardedptr.3qt
@@ -102,11 +102,11 @@ Copy one guarded pointer from another. The constructed guarded pointer points to
.SH "TQGuardedPtr::~TQGuardedPtr ()"
Destroys the guarded pointer. Just like a normal pointer, destroying a guarded pointer does \fInot\fR destroy the object being pointed to.
.SH "bool TQGuardedPtr::isNull () const"
-Returns \fCTRUE\fR if the referenced object has been destroyed or if there is no referenced object; otherwise returns FALSE.
+Returns \fCTRUE\fR if the referenced object has been destroyed or if there is no referenced object; otherwise returns false.
.SH "TQGuardedPtr::operator T * () const"
Cast operator; implements pointer semantics. Because of this function you can pass a TQGuardedPtr<X> to a function where an X* is required.
.SH "bool TQGuardedPtr::operator!= ( const TQGuardedPtr<T> & p ) const"
-Inequality operator; implements pointer semantics, the negation of operator==(). Returns TRUE if \fIp\fR and this guarded pointer are not pointing to the same object; otherwise returns FALSE.
+Inequality operator; implements pointer semantics, the negation of operator==(). Returns true if \fIp\fR and this guarded pointer are not pointing to the same object; otherwise returns false.
.SH "T & TQGuardedPtr::operator* () const"
Dereference operator; implements pointer semantics. Just use this operator as you would with a normal C++ pointer.
.SH "T * TQGuardedPtr::operator-> () const"
@@ -118,7 +118,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
.PP
Assignment operator. This guarded pointer then points to the same object as \fIp\fR points to.
.SH "bool TQGuardedPtr::operator== ( const TQGuardedPtr<T> & p ) const"
-Equality operator; implements traditional pointer semantics. Returns TRUE if both \fIp\fR and this guarded pointer are 0, or if both \fIp\fR and this pointer point to the same object; otherwise returns FALSE.
+Equality operator; implements traditional pointer semantics. Returns true if both \fIp\fR and this guarded pointer are 0, or if both \fIp\fR and this pointer point to the same object; otherwise returns false.
.PP
See also operator!=().