Re-run clang-format

This commit is contained in:
Nicolas Fella
2021-08-23 19:38:34 +02:00
parent 0f106b1bbc
commit 589dfe0343
26 changed files with 201 additions and 265 deletions

View File

@@ -49,7 +49,7 @@ void UserListModel::setRoom(Quotient::Room *room)
}
for (User *user : qAsConst(m_users)) {
#ifdef QUOTIENT_07
connect(user, &User::defaultAvatarChanged, this, [=](){
connect(user, &User::defaultAvatarChanged, this, [=]() {
avatarChanged(user, m_currentRoom);
});
#else
@@ -154,7 +154,7 @@ void UserListModel::userAdded(Quotient::User *user)
m_users.insert(pos, user);
endInsertRows();
#ifdef QUOTIENT_07
connect(user, &User::defaultAvatarChanged, this, [=](){
connect(user, &User::defaultAvatarChanged, this, [=]() {
avatarChanged(user, m_currentRoom);
});
#else