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/kmcomposewin.h | |
| parent | 409b67ac0559a06dc58da81fc90f0ba959d6068c (diff) | |
| download | tdepim-a88d4d648a4ae2d7d7abd23916b49b41c1a867f3.tar.gz tdepim-a88d4d648a4ae2d7d7abd23916b49b41c1a867f3.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/kmcomposewin.h')
| -rw-r--r-- | kmail/kmcomposewin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmail/kmcomposewin.h b/kmail/kmcomposewin.h index 942fc001..76f46060 100644 --- a/kmail/kmcomposewin.h +++ b/kmail/kmcomposewin.h @@ -157,8 +157,8 @@ public: // kmkernel, kmcommands, callback * Set the message the composer shall work with. This discards * previous messages without calling applyChanges() on them before. */ - void setMsg(KMMessage* newMsg, bool mayAutoSign=TRUE, - bool allowDecryption=FALSE, bool isModified=FALSE); + void setMsg(KMMessage* newMsg, bool mayAutoSign=true, + bool allowDecryption=false, bool isModified=false); void disableWordWrap(); @@ -215,7 +215,7 @@ private: public: // kmkernel, callback /** * If this flag is set the message of the composer is deleted when - * the composer is closed and the message was not sent. Default: FALSE + * the composer is closed and the message was not sent. Default: false */ inline void setAutoDelete(bool f) { mAutoDeleteMsg = f; } @@ -235,7 +235,7 @@ public: // kmkernel, kmcommand, mailserviceimpl /** * Recode to the specified charset */ - void setCharset(const TQCString& aCharset, bool forceDefault = FALSE); + void setCharset(const TQCString& aCharset, bool forceDefault = false); public: // kmcommand /** @@ -527,7 +527,7 @@ signals: private: /** * Applies the user changes to the message object of the composer - * and signs/encrypts the message if activated. Returns FALSE in + * and signs/encrypts the message if activated. Returns false in * case of an error (e.g. if PGP encryption fails). * Disables the controls of the composer window unless @dontDisable * is true. |
