diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-06-04 12:51:15 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-06-13 18:33:14 +0900 |
commit | 3aedfe41090e466fc161df9619dc377ec72f7297 (patch) | |
tree | 21e26775b0bd6006e31709d8eb8475ef2c2e3463 /events/roommessageevent.h | |
parent | c7c8dd72a4a3c503a2febf428932e0eec4b73aa6 (diff) | |
download | libquotient-3aedfe41090e466fc161df9619dc377ec72f7297.tar.gz libquotient-3aedfe41090e466fc161df9619dc377ec72f7297.zip |
Removed RoomMessageEvent::userId in favor of RoomEvent::senderId
Diffstat (limited to 'events/roommessageevent.h')
-rw-r--r-- | events/roommessageevent.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/events/roommessageevent.h b/events/roommessageevent.h index 6acaad6f..299b1b19 100644 --- a/events/roommessageevent.h +++ b/events/roommessageevent.h @@ -53,13 +53,11 @@ namespace QMatrixClient explicit RoomMessageEvent(const QJsonObject& obj); ~RoomMessageEvent(); - const QString& userId() const { return _userId; } MessageEventType msgtype() const { return _msgtype; } const QString& plainBody() const { return _plainBody; } const MessageEventContent::Base* content() const { return _content; } private: - QString _userId; MessageEventType _msgtype; QString _plainBody; MessageEventContent::Base* _content; |