diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-04-22 16:38:26 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-04-22 16:38:26 +0900 |
commit | 3319a57871efe46d607b00b2e5ae5ea563acc98d (patch) | |
tree | e81493726cc5ae64898bd28217b5e25cb05d016b | |
parent | 03bcadc3e85e68cd870bc3395b1e65794214175a (diff) | |
download | libquotient-3319a57871efe46d607b00b2e5ae5ea563acc98d.tar.gz libquotient-3319a57871efe46d607b00b2e5ae5ea563acc98d.zip |
Code reformatting
-rw-r--r-- | lib/room.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index 42d63574..128a4f48 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -302,7 +302,8 @@ QImage Room::avatar(int dimension) QImage Room::avatar(int width, int height) { if (!d->avatar.url().isEmpty()) - return d->avatar.get(connection(), width, height, [=] { emit avatarChanged(); }); + return d->avatar.get(connection(), width, height, + [=] { emit avatarChanged(); }); // Use the other side's avatar for 1:1's if (d->membersMap.size() == 2) |