summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdatetime.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-26 11:44:58 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-30 14:26:34 +0900
commit6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch)
tree0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqdatetime.3qt
parentff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff)
downloadtqt-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/tqdatetime.3qt')
-rw-r--r--doc/man/man3/tqdatetime.3qt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqdatetime.3qt b/doc/man/man3/tqdatetime.3qt
index 52fd1696e..edf2215ae 100644
--- a/doc/man/man3/tqdatetime.3qt
+++ b/doc/man/man3/tqdatetime.3qt
@@ -185,29 +185,29 @@ Note for TQt::TextDate: It is recommended that you use the English short month n
.PP
\fBWarning:\fR Note that TQt::LocalDate cannot be used here.
.SH "bool TQDateTime::isNull () const"
-Returns TRUE if both the date and the time are null; otherwise returns FALSE. A null datetime is invalid.
+Returns true if both the date and the time are null; otherwise returns false. A null datetime is invalid.
.PP
See also TQDate::isNull() and TQTime::isNull().
.SH "bool TQDateTime::isValid () const"
-Returns TRUE if both the date and the time are valid; otherwise returns FALSE.
+Returns true if both the date and the time are valid; otherwise returns false.
.PP
See also TQDate::isValid() and TQTime::isValid().
.SH "bool TQDateTime::operator!= ( const TQDateTime & dt ) const"
-Returns TRUE if this datetime is different from \fIdt\fR; otherwise returns FALSE.
+Returns true if this datetime is different from \fIdt\fR; otherwise returns false.
.PP
See also operator==().
.SH "bool TQDateTime::operator< ( const TQDateTime & dt ) const"
-Returns TRUE if this datetime is earlier than \fIdt\fR; otherwise returns FALSE.
+Returns true if this datetime is earlier than \fIdt\fR; otherwise returns false.
.SH "bool TQDateTime::operator<= ( const TQDateTime & dt ) const"
-Returns TRUE if this datetime is earlier than or equal to \fIdt\fR; otherwise returns FALSE.
+Returns true if this datetime is earlier than or equal to \fIdt\fR; otherwise returns false.
.SH "bool TQDateTime::operator== ( const TQDateTime & dt ) const"
-Returns TRUE if this datetime is equal to \fIdt\fR; otherwise returns FALSE.
+Returns true if this datetime is equal to \fIdt\fR; otherwise returns false.
.PP
See also operator!=().
.SH "bool TQDateTime::operator> ( const TQDateTime & dt ) const"
-Returns TRUE if this datetime is later than \fIdt\fR; otherwise returns FALSE.
+Returns true if this datetime is later than \fIdt\fR; otherwise returns false.
.SH "bool TQDateTime::operator>= ( const TQDateTime & dt ) const"
-Returns TRUE if this datetime is later than or equal to \fIdt\fR; otherwise returns FALSE.
+Returns true if this datetime is later than or equal to \fIdt\fR; otherwise returns false.
.SH "int TQDateTime::secsTo ( const TQDateTime & dt ) const"
Returns the number of seconds from this datetime to \fIdt\fR (which is negative if \fIdt\fR is earlier than this datetime).
.PP