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/tqlcdnumber.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc/html/tqlcdnumber.html') diff --git a/doc/html/tqlcdnumber.html b/doc/html/tqlcdnumber.html index 84048c93e..ab3f3ecd5 100644 --- a/doc/html/tqlcdnumber.html +++ b/doc/html/tqlcdnumber.html @@ -160,15 +160,15 @@ Destroys the LCD number.

bool TQLCDNumber::checkOverflow ( double num ) const

-Returns TRUE if num is too big to be displayed in its entirety; -otherwise returns FALSE. +Returns true if num is too big to be displayed in its entirety; +otherwise returns false.

See also display(), numDigits, and smallDecimalPoint.

bool TQLCDNumber::checkOverflow ( int num ) const

This is an overloaded member function, provided for convenience. It behaves essentially like the above function. -

Returns TRUE if num is too big to be displayed in its entirety; -otherwise returns FALSE. +

Returns true if num is too big to be displayed in its entirety; +otherwise returns false.

See also display(), numDigits, and smallDecimalPoint.

void TQLCDNumber::display ( const TQString & s ) [slot] @@ -279,7 +279,7 @@ equivalent.

Set this property's value with setMode() and get this property's value with mode().

int numDigits

This property holds the current number of digits displayed. -

Corresponds to the current number of digits. If TQLCDNumber::smallDecimalPoint is FALSE, the decimal point occupies +

Corresponds to the current number of digits. If TQLCDNumber::smallDecimalPoint is false, the decimal point occupies one digit position.

See also smallDecimalPoint. @@ -302,9 +302,9 @@ one digit position.

Set this property's value with setSegmentStyle() and get this property's value with segmentStyle().

bool smallDecimalPoint

This property holds the style of the decimal point. -

If TRUE the decimal point is drawn between two digit positions. +

If true the decimal point is drawn between two digit positions. Otherwise it occupies a digit position of its own, i.e. is drawn -in a digit position. The default is FALSE. +in a digit position. The default is false.

The inter-digit space is made slightly wider when the decimal point is drawn between the digits.

See also mode. -- cgit v1.2.3