summaryrefslogtreecommitdiffstats
path: root/src/libraries/qmfclient/qmailaccount.cpp
diff options
authorPekka Vuorela <pekka.vuorela@jolla.com>2025-05-09 11:28:50 +0300
committerPekka Vuorela <pekka.vuorela@jolla.com>2025-05-09 11:59:50 +0300
commit3d6ae172af86e8705a74e82a6cf5c3b1d0f720a8 (patch)
tree1a2c1bd4bac0ceb3eff07b4dfc20443d366275cb /src/libraries/qmfclient/qmailaccount.cpp
parent624337714112d2afb2c8553a4f3cccf088accfce (diff)
Add missing spaces after for/if/while/switchHEADmaster
Change-Id: I57c6ed78099b3359a16ce807da95325e755f0197 Reviewed-by: Pekka Vuorela <pvuorela@iki.fi> Reviewed-by: Damien Caliste <dcaliste@free.fr> Reviewed-by: <matti.viljanen@kapsi.fi>
Diffstat (limited to 'src/libraries/qmfclient/qmailaccount.cpp')
-rw-r--r--src/libraries/qmfclient/qmailaccount.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libraries/qmfclient/qmailaccount.cpp b/src/libraries/qmfclient/qmailaccount.cpp
index d618ba09..ed62aa28 100644
--- a/src/libraries/qmfclient/qmailaccount.cpp
+++ b/src/libraries/qmfclient/qmailaccount.cpp
@@ -407,7 +407,7 @@ QMailAccount::QMailAccount(const QMailAccount& other)
QMailAccount& QMailAccount::operator=(const QMailAccount& other)
{
- if(&other != this)
+ if (&other != this)
d = other.d;
return *this;
}