make lint
This commit is contained in:
parent
70e43b1d17
commit
0f057175d4
@ -193,10 +193,12 @@ ChatPage::ChatPage(QSharedPointer<MatrixClient> client, QWidget *parent)
|
||||
SIGNAL(ownAvatarRetrieved(const QPixmap &)),
|
||||
this,
|
||||
SLOT(setOwnAvatar(const QPixmap &)));
|
||||
connect(
|
||||
client_.data(), SIGNAL(addRoom(const QString &)), this, SLOT(addRoom(const QString &)));
|
||||
connect(client_.data(),
|
||||
SIGNAL(removeRoom(const QString &)),
|
||||
SIGNAL(joinedRoom(const QString &)),
|
||||
this,
|
||||
SLOT(addRoom(const QString &)));
|
||||
connect(client_.data(),
|
||||
SIGNAL(leftRoom(const QString &)),
|
||||
this,
|
||||
SLOT(removeRoom(const QString &)));
|
||||
|
||||
|
@ -96,7 +96,8 @@ Rooms::deserialize(const QJsonValue &data)
|
||||
} catch (DeserializationException &e) {
|
||||
qWarning() << e.what();
|
||||
qWarning() << "Skipping malformed object for room" << it.key();
|
||||
} }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (object.contains("invite")) {
|
||||
@ -124,7 +125,6 @@ Rooms::deserialize(const QJsonValue &data)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
Reference in New Issue
Block a user