diff options
Diffstat (limited to 'src/libraries/qmfclient/qmailaccount.cpp')
-rw-r--r-- | src/libraries/qmfclient/qmailaccount.cpp | 2 |
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; } |