summaryrefslogtreecommitdiffstats
path: root/examples/qtmail/writemail.cpp
diff options
context:
space:
mode:
authorPekka Vuorela <[email protected]>2025-05-09 11:28:50 +0300
committerPekka Vuorela <[email protected]>2025-05-09 11:59:50 +0300
commit3d6ae172af86e8705a74e82a6cf5c3b1d0f720a8 (patch)
tree1a2c1bd4bac0ceb3eff07b4dfc20443d366275cb /examples/qtmail/writemail.cpp
parent624337714112d2afb2c8553a4f3cccf088accfce (diff)
Add missing spaces after for/if/while/switch
Change-Id: I57c6ed78099b3359a16ce807da95325e755f0197 Reviewed-by: Pekka Vuorela <[email protected]> Reviewed-by: Damien Caliste <[email protected]> Reviewed-by: <[email protected]>
Diffstat (limited to 'examples/qtmail/writemail.cpp')
-rw-r--r--examples/qtmail/writemail.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/qtmail/writemail.cpp b/examples/qtmail/writemail.cpp
index 81e351b1..1fb6c9c0 100644
--- a/examples/qtmail/writemail.cpp
+++ b/examples/qtmail/writemail.cpp
@@ -427,7 +427,7 @@ bool WriteMail::prepareComposer(QMailMessage::MessageType type, const QMailAccou
}
updateAccountSelection(type, accountId);
- if(m_composerInterface)
+ if (m_composerInterface)
m_composerInterface->setSendingAccountId(accountId);
return success;
@@ -460,7 +460,7 @@ bool WriteMail::draft()
void WriteMail::statusChanged(const QString& status)
{
- if(status.isEmpty())
+ if (status.isEmpty())
setWindowTitle(tr("(Unnamed)"));
else
setWindowTitle(status);