diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-27 16:55:48 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-27 16:55:48 +0900 |
commit | 8f878546e0a859e78dfc2c6ff7f08507347a76ea (patch) | |
tree | f95c1e5a2f97a2e200be23cd5d6ffde91487bd1d /kmail/kmfiltermgr.h | |
parent | 625d3c38cd3a49d07b6e1f511fe06d0792440791 (diff) | |
download | tdepim-8f878546e0a859e78dfc2c6ff7f08507347a76ea.tar.gz tdepim-8f878546e0a859e78dfc2c6ff7f08507347a76ea.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmail/kmfiltermgr.h')
-rw-r--r-- | kmail/kmfiltermgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/kmfiltermgr.h b/kmail/kmfiltermgr.h index 70288a3a..a6805172 100644 --- a/kmail/kmfiltermgr.h +++ b/kmail/kmfiltermgr.h @@ -50,7 +50,7 @@ public: void readConfig(void); /** Store filter rules in config file. */ - void writeConfig(bool withSync=TRUE); + void writeConfig(bool withSync=true); /** Open an edit dialog. If checkForEmptyFilterList is true, an empty filter is created to improve the visibility of the dialog in case no filter @@ -157,7 +157,7 @@ public: /** Called from the folder manager when a folder is removed. Tests if the folder aFolder is used in any action. Changes - to aNewFolder folder in this case. Returns TRUE if a change + to aNewFolder folder in this case. Returns true if a change occurred. */ bool folderRemoved(KMFolder* aFolder, KMFolder* aNewFolder); |