aboutsummaryrefslogtreecommitdiff
path: root/lib/events/roomcreateevent.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-02 19:59:40 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-02 19:59:40 +0900
commitc05ade838f0fce81f2bbe80a3295618a8a26ff52 (patch)
tree763340439a0f4034e9c829d76cb1ffe9766b83c5 /lib/events/roomcreateevent.h
parent1a1ea8fc87e827fa44c80ff30277e3bee62f4ebb (diff)
downloadlibquotient-c05ade838f0fce81f2bbe80a3295618a8a26ff52.tar.gz
libquotient-c05ade838f0fce81f2bbe80a3295618a8a26ff52.zip
Apply the new brace wrapping to source files
Diffstat (limited to 'lib/events/roomcreateevent.h')
-rw-r--r--lib/events/roomcreateevent.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/lib/events/roomcreateevent.h b/lib/events/roomcreateevent.h
index 17b86388..c8ba8c40 100644
--- a/lib/events/roomcreateevent.h
+++ b/lib/events/roomcreateevent.h
@@ -20,22 +20,17 @@
#include "stateevent.h"
-namespace QMatrixClient
-{
-class RoomCreateEvent : public StateEventBase
-{
+namespace QMatrixClient {
+class RoomCreateEvent : public StateEventBase {
public:
DEFINE_EVENT_TYPEID("m.room.create", RoomCreateEvent)
- explicit RoomCreateEvent()
- : StateEventBase(typeId(), matrixTypeId())
- {}
+ explicit RoomCreateEvent() : StateEventBase(typeId(), matrixTypeId()) {}
explicit RoomCreateEvent(const QJsonObject& obj)
: StateEventBase(typeId(), obj)
{}
- struct Predecessor
- {
+ struct Predecessor {
QString roomId;
QString eventId;
};