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/tqdatetime.html | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'doc/html/tqdatetime.html') diff --git a/doc/html/tqdatetime.html b/doc/html/tqdatetime.html index 707b3f51d..14dd7aa1e 100644 --- a/doc/html/tqdatetime.html +++ b/doc/html/tqdatetime.html @@ -194,47 +194,47 @@ names can also be used, they depend on the user's locale settings.

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.

See also TQDate::isNull() and TQTime::isNull().

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.

See also TQDate::isValid() and TQTime::isValid().

bool TQDateTime::operator!= ( const TQDateTime & dt ) const

-Returns TRUE if this datetime is different from dt; otherwise -returns FALSE. +Returns true if this datetime is different from dt; otherwise +returns false.

See also operator==().

bool TQDateTime::operator< ( const TQDateTime & dt ) const

-Returns TRUE if this datetime is earlier than dt; otherwise -returns FALSE. +Returns true if this datetime is earlier than dt; otherwise +returns false.

bool TQDateTime::operator<= ( const TQDateTime & dt ) const

-Returns TRUE if this datetime is earlier than or equal to dt; -otherwise returns FALSE. +Returns true if this datetime is earlier than or equal to dt; +otherwise returns false.

bool TQDateTime::operator== ( const TQDateTime & dt ) const

-Returns TRUE if this datetime is equal to dt; otherwise returns FALSE. +Returns true if this datetime is equal to dt; otherwise returns false.

See also operator!=().

bool TQDateTime::operator> ( const TQDateTime & dt ) const

-Returns TRUE if this datetime is later than dt; otherwise -returns FALSE. +Returns true if this datetime is later than dt; otherwise +returns false.

bool TQDateTime::operator>= ( const TQDateTime & dt ) const

-Returns TRUE if this datetime is later than or equal to dt; -otherwise returns FALSE. +Returns true if this datetime is later than or equal to dt; +otherwise returns false.

int TQDateTime::secsTo ( const TQDateTime & dt ) const

-- cgit v1.2.3