summaryrefslogtreecommitdiffstats
path: root/src/kchmkeyeventfilter.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-31 15:40:28 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-03 10:31:18 +0900
commit705f5a5715650524a924fda398bb544dae7def3a (patch)
treed996b709b97c5681adc6cd5739c1d6f1733b20cf /src/kchmkeyeventfilter.cpp
parent82e8cf625e7ca747149760204b36724cd980bf81 (diff)
downloadkchmviewer-r14.1.4.tar.gz
kchmviewer-r14.1.4.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 66dc020d264d1fe4ebe235e5dd7eceb863007d7c)
Diffstat (limited to 'src/kchmkeyeventfilter.cpp')
-rw-r--r--src/kchmkeyeventfilter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kchmkeyeventfilter.cpp b/src/kchmkeyeventfilter.cpp
index 984c457..ef7dc9a 100644
--- a/src/kchmkeyeventfilter.cpp
+++ b/src/kchmkeyeventfilter.cpp
@@ -49,5 +49,5 @@ bool KCHMKeyEventFilter::eventFilter( TQObject *, TQEvent *e )
*ptr = e->type() == TQEvent::KeyPress ? true : false;
}
- return FALSE; // Standard event processing
+ return false; // Standard event processing
}