diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 14:06:03 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 14:27:39 +0900 |
commit | 291b4f5da2f98283b7c98ee90401df7c3cb34dad (patch) | |
tree | a28eb1a3c46756a6c6dbf3cdaa7bd88807d237c8 /src/modules/objects/class_groupbox.cpp | |
parent | 1f1b292b68c4fe5d4843dba00eff77b431e6bc12 (diff) | |
download | kvirc-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_groupbox.cpp')
-rw-r--r-- | src/modules/objects/class_groupbox.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/objects/class_groupbox.cpp b/src/modules/objects/class_groupbox.cpp index f96b3c0..5f24409 100644 --- a/src/modules/objects/class_groupbox.cpp +++ b/src/modules/objects/class_groupbox.cpp @@ -68,13 +68,13 @@ const int align_cod[] = { !fn: <string> $title() Returns the group box title text. !fn: $setFlat(<bflag:boolean>) - Sets whether the group box is painted flat. Valid Values are 1 or 0. + Sets whether the group box is painted flat. Valid Values are true or false. !fn: <boolean> $isFlat() - Returns 1 (TRUE) if the group box is painted flat; otherwise returns 0 (FALSE). + Returns true if the group box is painted flat; otherwise returns false. !fn: <boolean> $isCheckable() - Returns 1 (TRUE) if the group box has a checkbox in its title; otherwise returns 0 (FALSE). + Returns true if the group box has a checkbox in its title; otherwise returns false. !fn: $setCheckable(<bflag:boolean>) - Sets whether the group box has a checkbox in its title: Valid values are 1 or 0. + Sets whether the group box has a checkbox in its title: Valid values are true or false. !fn: $setInsideMargin(<margin:uint>) Sets the the width of the inside margin to m pixels. !fn: <integer> $insideMargin() |