summaryrefslogtreecommitdiffstats
path: root/kmail/kmmsglist.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-27 16:55:48 +0900
commit8f878546e0a859e78dfc2c6ff7f08507347a76ea (patch)
treef95c1e5a2f97a2e200be23cd5d6ffde91487bd1d /kmail/kmmsglist.h
parent625d3c38cd3a49d07b6e1f511fe06d0792440791 (diff)
downloadtdepim-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/kmmsglist.h')
-rw-r--r--kmail/kmmsglist.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/kmmsglist.h b/kmail/kmmsglist.h
index 83d9e8db..04ff3176 100644
--- a/kmail/kmmsglist.h
+++ b/kmail/kmmsglist.h
@@ -64,13 +64,13 @@ public:
/** Clear messages. If autoDelete is set (default) the messages are
deleted. The array is not resized. If @p syncDict, also updates
the message dictionary. */
- void clear(bool autoDelete=TRUE, bool syncDict = false);
+ void clear(bool autoDelete=true, bool syncDict = false);
/** Resize array and initialize new elements if any. Returns
- FALSE if memory cannot be allocated. */
+ false if memory cannot be allocated. */
bool resize(unsigned int size);
- /** Clear the array and resize it to given size. Returns FALSE
+ /** Clear the array and resize it to given size. Returns false
if memory cannot be allocated. */
bool reset(unsigned int size);