summaryrefslogtreecommitdiffstats
path: root/kviewshell/plugins/djvu/libdjvu/debug.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-07 16:34:47 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-07 16:34:54 +0900
commitc7c1795c817c1f7b89046c6d9f24379143f0bf6b (patch)
treef5d66b8f889ec7fdf57d8f6e51ee859cfa5d90f3 /kviewshell/plugins/djvu/libdjvu/debug.cpp
parentfe0f8cd399c699103839eeba59df93feed3ca9ef (diff)
downloadtdegraphics-c7c1795c817c1f7b89046c6d9f24379143f0bf6b.tar.gz
tdegraphics-c7c1795c817c1f7b89046c6d9f24379143f0bf6b.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kviewshell/plugins/djvu/libdjvu/debug.cpp')
-rw-r--r--kviewshell/plugins/djvu/libdjvu/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kviewshell/plugins/djvu/libdjvu/debug.cpp b/kviewshell/plugins/djvu/libdjvu/debug.cpp
index 40e57b70..cba08577 100644
--- a/kviewshell/plugins/djvu/libdjvu/debug.cpp
+++ b/kviewshell/plugins/djvu/libdjvu/debug.cpp
@@ -233,7 +233,7 @@ DjVuDebug& DjVuDebug::operator<<(type arg)\
DjVuDebug& DjVuDebug::operator<<(bool arg)
{
- format("%s", arg ? "TRUE" : "FALSE"); return *this;
+ format("%s", arg ? "true" : "false"); return *this;
}
OP(char, "%c")