summaryrefslogtreecommitdiffstats
path: root/kviewshell/plugins/djvu/libdjvu/GURL.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 18:26:20 +0900
commit0599e57edd9b4998aa99b0a14f4d83c2b9390b29 (patch)
tree0f9cf5d922e8c354348e50872fe00aa6ee9136cf /kviewshell/plugins/djvu/libdjvu/GURL.cpp
parent063aaff4032126e6e0685865142dea3102a6eff7 (diff)
downloadtdegraphics-0599e57edd9b4998aa99b0a14f4d83c2b9390b29.tar.gz
tdegraphics-0599e57edd9b4998aa99b0a14f4d83c2b9390b29.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit c7c1795c817c1f7b89046c6d9f24379143f0bf6b)
Diffstat (limited to 'kviewshell/plugins/djvu/libdjvu/GURL.cpp')
-rw-r--r--kviewshell/plugins/djvu/libdjvu/GURL.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kviewshell/plugins/djvu/libdjvu/GURL.cpp b/kviewshell/plugins/djvu/libdjvu/GURL.cpp
index 812f1d22..07853b55 100644
--- a/kviewshell/plugins/djvu/libdjvu/GURL.cpp
+++ b/kviewshell/plugins/djvu/libdjvu/GURL.cpp
@@ -212,7 +212,7 @@ hexval(char c)
static bool
is_argument(const char * start)
- // Returns TRUE if 'start' points to the beginning of an argument
+ // Returns true if 'start' points to the beginning of an argument
// (either hash or CGI)
{
// return (*start=='#' || *start=='?' || *start=='&' || *start==';');
@@ -221,7 +221,7 @@ is_argument(const char * start)
static bool
is_argument_sep(const char * start)
- // Returns TRUE if 'start' points to the beginning of an argument
+ // Returns true if 'start' points to the beginning of an argument
// (either hash or CGI)
{
return (*start=='&')||(*start == ';');