diff options
author | Felix Rohrbach <fxrh@gmx.de> | 2016-04-11 02:18:45 +0200 |
---|---|---|
committer | Felix Rohrbach <fxrh@gmx.de> | 2016-04-11 02:18:45 +0200 |
commit | e074be6a42d4fbc9fd76566365f3ef148a8e7bdd (patch) | |
tree | 2392377c2cea0f35f5b149af6668738a28f8e8f1 /events | |
parent | a53779d8ebb045e5bc5304f96120fa52d8612d44 (diff) | |
download | libquotient-e074be6a42d4fbc9fd76566365f3ef148a8e7bdd.tar.gz libquotient-e074be6a42d4fbc9fd76566365f3ef148a8e7bdd.zip |
Missing method in the last commit
Diffstat (limited to 'events')
-rw-r--r-- | events/roommessageevent.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/events/roommessageevent.cpp b/events/roommessageevent.cpp index baaa9140..99d17e5c 100644 --- a/events/roommessageevent.cpp +++ b/events/roommessageevent.cpp @@ -67,6 +67,11 @@ QDateTime RoomMessageEvent::hsob_ts() const return d->hsob_ts; } +MessageEventContent* RoomMessageEvent::content() const +{ + return d->content; +} + RoomMessageEvent* RoomMessageEvent::fromJson(const QJsonObject& obj) { RoomMessageEvent* e = new RoomMessageEvent(); @@ -182,4 +187,4 @@ RoomMessageEvent* RoomMessageEvent::fromJson(const QJsonObject& obj) // } } return e; -}
\ No newline at end of file +} |