aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-06-04 12:51:15 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-06-13 18:33:14 +0900
commit3aedfe41090e466fc161df9619dc377ec72f7297 (patch)
tree21e26775b0bd6006e31709d8eb8475ef2c2e3463
parentc7c8dd72a4a3c503a2febf428932e0eec4b73aa6 (diff)
downloadlibquotient-3aedfe41090e466fc161df9619dc377ec72f7297.tar.gz
libquotient-3aedfe41090e466fc161df9619dc377ec72f7297.zip
Removed RoomMessageEvent::userId in favor of RoomEvent::senderId
-rw-r--r--events/roommessageevent.h2
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;