summaryrefslogtreecommitdiffstats
path: root/kmail/kmsearchpattern.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-27 16:55:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-29 22:58:05 +0900
commita88d4d648a4ae2d7d7abd23916b49b41c1a867f3 (patch)
tree73aacc657e135ab179010d102fdbd7a0a9edc40d /kmail/kmsearchpattern.h
parent409b67ac0559a06dc58da81fc90f0ba959d6068c (diff)
downloadtdepim-a88d4d64.tar.gz
tdepim-a88d4d64.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 8f878546e0a859e78dfc2c6ff7f08507347a76ea)
Diffstat (limited to 'kmail/kmsearchpattern.h')
-rw-r--r--kmail/kmsearchpattern.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/kmsearchpattern.h b/kmail/kmsearchpattern.h
index 9d517fdf..62058936 100644
--- a/kmail/kmsearchpattern.h
+++ b/kmail/kmsearchpattern.h
@@ -74,14 +74,14 @@ public:
virtual ~KMSearchRule() {};
/** Tries to match the rule against the given KMMessage.
- @return TRUE if the rule matched, FALSE otherwise. Must be
+ @return true if the rule matched, false otherwise. Must be
implemented by subclasses.
*/
virtual bool matches( const KMMessage * msg ) const = 0;
/** Optimized version tries to match the rule against the given
@see DwString.
- @return TRUE if the rule matched, FALSE otherwise.
+ @return true if the rule matched, false otherwise.
*/
virtual bool matches( const DwString & str, KMMessage & msg,
const DwBoyerMoore * headerField=0,
@@ -170,7 +170,7 @@ public:
virtual bool matches( const KMMessage * msg ) const;
/** Optimized version tries to match the rule against the given DwString.
- @return TRUE if the rule matched, FALSE otherwise.
+ @return true if the rule matched, false otherwise.
*/
virtual bool matches( const DwString & str, KMMessage & msg,
const DwBoyerMoore * headerField=0,
@@ -334,7 +334,7 @@ public:
own result or else most functionality is lacking, or has to be
reimplemented, since the rules are private to this class.
- @return TRUE if the match was successful, FALSE otherwise.
+ @return true if the match was successful, false otherwise.
*/
bool matches( const KMMessage * msg, bool ignoreBody = false ) const;
bool matches( const DwString & str, bool ignoreBody = false ) const;