From kde-commits Thu Aug 31 21:29:50 2017 From: Montel Laurent Date: Thu, 31 Aug 2017 21:29:50 +0000 To: kde-commits Subject: [ruqola] src: Minor Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=150421501311505 Git commit 219bb593a2f8348a4f39ea57dda4bc4b1dd1255d by Montel Laurent. Committed on 31/08/2017 at 21:24. Pushed by mlaurent into branch 'master'. Minor M +4 -1 src/user.cpp https://commits.kde.org/ruqola/219bb593a2f8348a4f39ea57dda4bc4b1dd1255d diff --git a/src/user.cpp b/src/user.cpp index 37e2450..a2a827f 100644 --- a/src/user.cpp +++ b/src/user.cpp @@ -65,7 +65,10 @@ void User::setStatus(const QString &status) = bool User::operator =3D=3D(const User &other) const { - return (mName =3D=3D other.name()) && (mUserId =3D=3D other.userId()) = && (mStatus =3D=3D other.status() && (mListRooms =3D=3D other.listRooms())); + return (mName =3D=3D other.name()) + && (mUserId =3D=3D other.userId()) + && (mStatus =3D=3D other.status()) + && (mListRooms =3D=3D other.listRooms()); } = QStringList User::listRooms() const