summaryrefslogtreecommitdiffstats
path: root/src/modules/objects/class_lcd.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-22 14:06:03 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-22 14:27:39 +0900
commit291b4f5da2f98283b7c98ee90401df7c3cb34dad (patch)
treea28eb1a3c46756a6c6dbf3cdaa7bd88807d237c8 /src/modules/objects/class_lcd.cpp
parent1f1b292b68c4fe5d4843dba00eff77b431e6bc12 (diff)
downloadkvirc-291b4f5da2f98283b7c98ee90401df7c3cb34dad.tar.gz
kvirc-291b4f5da2f98283b7c98ee90401df7c3cb34dad.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/objects/class_lcd.cpp')
-rw-r--r--src/modules/objects/class_lcd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/objects/class_lcd.cpp b/src/modules/objects/class_lcd.cpp
index 79ddea0..88c665f 100644
--- a/src/modules/objects/class_lcd.cpp
+++ b/src/modules/objects/class_lcd.cpp
@@ -58,12 +58,12 @@
!fn: $setNumDigits(<number:integer>)
Sets the lcd number value.
!fn: <boolean> $checkOverflow()
- 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.
!fn: $setSmallDecimalPoint(<bflag:boolean>)
Sets the the decimal point style, valid bool values are 1 or 0.
!fn: <boolean> $checkOverflow(<number:integer>)
- Returns 1 (TRUE) if num is too big to be displayed in its entirety; otherwise returns 0 (FALSE).
+ Returns true if num is too big to be displayed in its entirety; otherwise returns false.
*/
KVSO_BEGIN_REGISTERCLASS(KviKvsObject_lcd,"lcdnumber","widget")