summary refs log tree commit diff
path: root/include/events/TopicEventContent.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/TopicEventContent.h
parentAdd missing destructors (diff)
downloadnheko-2644e4accaf7487ad51b205040163e42b76de3a4.tar.xz
Small style change
Diffstat (limited to 'include/events/TopicEventContent.h')
-rw-r--r--include/events/TopicEventContent.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/include/events/TopicEventContent.h b/include/events/TopicEventContent.h

index ff2fe3bb..e8f3d7a4 100644 --- a/include/events/TopicEventContent.h +++ b/include/events/TopicEventContent.h
@@ -29,7 +29,9 @@ namespace events * A topic is a short message detailing what is currently being discussed in the room. */ -class TopicEventContent : public Deserializable, public Serializable +class TopicEventContent + : public Deserializable + , public Serializable { public: void deserialize(const QJsonValue &data) override; @@ -41,9 +43,10 @@ private: QString topic_; }; -inline QString TopicEventContent::topic() const +inline QString +TopicEventContent::topic() const { return topic_; } -} // namespace events -} // namespace matrix +} // namespace events +} // namespace matrix