diff options
author | Roman Plášil <me@rplasil.name> | 2017-06-07 16:26:49 +0800 |
---|---|---|
committer | Roman Plášil <me@rplasil.name> | 2017-06-07 16:26:49 +0800 |
commit | 3bad869c1cf9281a27dbcbeebcc05edd41c46dff (patch) | |
tree | 6be3b4a49cfbcc691ebd9dbf76cec5e712dea1f6 | |
parent | 41e34a96bf078c4080dd54ed62fa1b1dcc42a17a (diff) | |
download | libquotient-3bad869c1cf9281a27dbcbeebcc05edd41c46dff.tar.gz libquotient-3bad869c1cf9281a27dbcbeebcc05edd41c46dff.zip |
Adjust whitespace
-rw-r--r-- | room.cpp | 6 | ||||
-rw-r--r-- | user.h | 8 |
2 files changed, 7 insertions, 7 deletions
@@ -371,13 +371,13 @@ QList< User* > Room::users() const } QStringList Room::memberNames() const { - QStringList res; + QStringList res; - for (auto u : d->membersMap.values()) { + for (auto u : d->membersMap.values()) { res.append( this->roomMembername(u) ); } - return res; + return res; } void Room::Private::insertMemberIntoMap(User *u) @@ -47,10 +47,10 @@ namespace QMatrixClient */ Q_INVOKABLE QString displayname() const; - /** - * Returns the name of bridge the user is connected from or empty. - */ - Q_INVOKABLE QString bridged() const; + /** + * Returns the name of bridge the user is connected from or empty. + */ + Q_INVOKABLE QString bridged() const; QPixmap avatar(int requestedWidth, int requestedHeight); QPixmap croppedAvatar(int requestedWidth, int requestedHeight); |