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/kmmsglist.cpp | |
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/kmmsglist.cpp')
-rw-r--r-- | kmail/kmmsglist.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmail/kmmsglist.cpp b/kmail/kmmsglist.cpp index 9689467b..c7781148 100644 --- a/kmail/kmmsglist.cpp +++ b/kmail/kmmsglist.cpp @@ -24,7 +24,7 @@ KMMsgList::KMMsgList(int initSize) //----------------------------------------------------------------------------- KMMsgList::~KMMsgList() { - clear(TRUE); + clear(true); } @@ -69,22 +69,22 @@ bool KMMsgList::resize(unsigned int aSize) } // do the resizing - if (!TQMemArray<KMMsgBase*>::resize(aSize)) return FALSE; + if (!TQMemArray<KMMsgBase*>::resize(aSize)) return false; // initialize new elements for (i=oldSize; i<aSize; i++) at(i) = 0; - return TRUE; + return true; } //----------------------------------------------------------------------------- bool KMMsgList::reset(unsigned int aSize) { - if (!resize(aSize)) return FALSE; + if (!resize(aSize)) return false; clear(); - return TRUE; + return true; } |