summaryrefslogtreecommitdiffstats
path: root/kmail/folderstorage.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/folderstorage.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/folderstorage.h')
-rw-r--r--kmail/folderstorage.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/folderstorage.h b/kmail/folderstorage.h
index 13f2ba0f..87d63d00 100644
--- a/kmail/folderstorage.h
+++ b/kmail/folderstorage.h
@@ -208,7 +208,7 @@ public:
Emits msgAdded signals */
void emitMsgAddedSignals(int idx);
- /** Returns FALSE, if the message has to be retrieved from an IMAP account
+ /** Returns false, if the message has to be retrieved from an IMAP account
* first. In this case this function does this and cares for the rest */
virtual bool canAddMsgNow(KMMessage* aMsg, int* aIndex_ret);
@@ -310,14 +310,14 @@ public:
on failure. */
virtual int rename(const TQString& newName, KMFolderDir *aParent = 0);
- /** Returns TRUE if a table of contents file is automatically created. */
+ /** Returns true if a table of contents file is automatically created. */
bool autoCreateIndex() const { return mAutoCreateIndex; }
/** Allow/disallow automatic creation of a table of contents file.
- Default is TRUE. */
+ Default is true. */
virtual void setAutoCreateIndex(bool);
- /** Returns TRUE if the table of contents is dirty. This happens when
+ /** Returns true if the table of contents is dirty. This happens when
a message is deleted from the folder. The toc will then be re-created
when the folder is closed. */
bool dirty() const { return mDirty; }
@@ -325,7 +325,7 @@ public:
/** Change the dirty flag. */
void setDirty(bool f);
- /** Returns TRUE if the folder contains deleted messages */
+ /** Returns true if the folder contains deleted messages */
bool needsCompacting() const { return needsCompact; }
virtual void setNeedsCompacting(bool f) { needsCompact = f; }
@@ -618,7 +618,7 @@ friend class KMMsgDict;
bool mExportsSernums :1;
/** if the index is dirty it will be recreated upon close() */
bool mDirty :1;
- /** TRUE if the files of the folder are locked (writable) */
+ /** true if the files of the folder are locked (writable) */
bool mFilesLocked :1;
/** number of unread messages, -1 if not yet set */