From b87533f9904c10f24d6b2e8177c00944e3efe15b Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 26 Nov 2025 15:11:22 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Manually cherry-picked from commit 4d495175 Signed-off-by: Michele Calgaro --- doc/html/ntqdatetime.html | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'doc/html/ntqdatetime.html') diff --git a/doc/html/ntqdatetime.html b/doc/html/ntqdatetime.html index 379b5f831..92b087337 100644 --- a/doc/html/ntqdatetime.html +++ b/doc/html/ntqdatetime.html @@ -195,47 +195,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