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-29 22:58:05 +0900 |
| commit | a88d4d648a4ae2d7d7abd23916b49b41c1a867f3 (patch) | |
| tree | 73aacc657e135ab179010d102fdbd7a0a9edc40d /kmail/folderstorage.h | |
| parent | 409b67ac0559a06dc58da81fc90f0ba959d6068c (diff) | |
| download | tdepim-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/folderstorage.h')
| -rw-r--r-- | kmail/folderstorage.h | 12 |
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 */ |
