summary refs log tree commit diff
path: root/include/events/CreateEventContent.h
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-08-20 13:47:22 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-08-20 13:47:22 +0300
commit2644e4accaf7487ad51b205040163e42b76de3a4 (patch)
tree523db09ee380e05838bfb2a5eee60ca88aad6e52 /include/events/CreateEventContent.h
parentAdd missing destructors (diff)
downloadnheko-2644e4accaf7487ad51b205040163e42b76de3a4.tar.xz
Small style change
Diffstat (limited to 'include/events/CreateEventContent.h')
-rw-r--r--include/events/CreateEventContent.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/include/events/CreateEventContent.h b/include/events/CreateEventContent.h

index eedee9f1..0a401dac 100644 --- a/include/events/CreateEventContent.h +++ b/include/events/CreateEventContent.h
@@ -29,7 +29,9 @@ namespace events * This is the first event in a room and cannot be changed. It acts as the root of all other events. */ -class CreateEventContent : public Deserializable, public Serializable +class CreateEventContent + : public Deserializable + , public Serializable { public: void deserialize(const QJsonValue &data) override; @@ -42,9 +44,10 @@ private: QString creator_; }; -inline QString CreateEventContent::creator() const +inline QString +CreateEventContent::creator() const { return creator_; } -} // namespace events -} // namespace matrix +} // namespace events +} // namespace matrix