summaryrefslogtreecommitdiffstats
path: root/src/kernel/tqscriptengine_x11.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-12-26 14:08:52 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-12-27 22:38:28 +0900
commit50326e196a9245af21604da7dc3a36eea52784ed (patch)
tree955f50c739379c59d3846c5c6ec25c8f5856fb91 /src/kernel/tqscriptengine_x11.cpp
parent854c5d5c9cfd48a2d5a17366fb6805219eab4859 (diff)
downloadtqt-50326e196a9245af21604da7dc3a36eea52784ed.tar.gz
tqt-50326e196a9245af21604da7dc3a36eea52784ed.zip
Replace TRUE/FALSE with boolean values true/false - part 10
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kernel/tqscriptengine_x11.cpp')
-rw-r--r--src/kernel/tqscriptengine_x11.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/tqscriptengine_x11.cpp b/src/kernel/tqscriptengine_x11.cpp
index 7d997457c..6d5429cb0 100644
--- a/src/kernel/tqscriptengine_x11.cpp
+++ b/src/kernel/tqscriptengine_x11.cpp
@@ -1835,7 +1835,7 @@ static bool indic_shape(TQShaperItem *item)
bool invalid;
int send = indic_nextSyllableBoundary(item->script, *item->string, sstart, end, &invalid);
IDEBUG("syllable from %d, length %d, invalid=%s", sstart, send-sstart,
- invalid ? "TRUE" : "FALSE");
+ invalid ? "true" : "false");
syllable.from = sstart;
syllable.length = send-sstart;
syllable.glyphs = item->glyphs + first_glyph;
@@ -2151,7 +2151,7 @@ static bool tibetan_shape(TQShaperItem *item)
bool invalid;
int send = tibetan_nextSyllableBoundary(*(item->string), sstart, end, &invalid);
IDEBUG("syllable from %d, length %d, invalid=%s", sstart, send-sstart,
- invalid ? "TRUE" : "FALSE");
+ invalid ? "true" : "false");
syllable.from = sstart;
syllable.length = send-sstart;
syllable.glyphs = item->glyphs + first_glyph;
@@ -2781,7 +2781,7 @@ static bool khmer_shape(TQShaperItem *item)
bool invalid;
int send = khmer_nextSyllableBoundary(*item->string, sstart, end, &invalid);
KHDEBUG("syllable from %d, length %d, invalid=%s", sstart, send-sstart,
- invalid ? "TRUE" : "FALSE");
+ invalid ? "true" : "false");
syllable.from = sstart;
syllable.length = send-sstart;
syllable.glyphs = item->glyphs + first_glyph;
@@ -3288,7 +3288,7 @@ static bool myanmar_shape(TQShaperItem *item)
bool invalid;
int send = myanmar_nextSyllableBoundary(*item->string, sstart, end, &invalid);
MMDEBUG("syllable from %d, length %d, invalid=%s", sstart, send-sstart,
- invalid ? "TRUE" : "FALSE");
+ invalid ? "true" : "false");
syllable.from = sstart;
syllable.length = send-sstart;
syllable.glyphs = item->glyphs + first_glyph;