From 3aedfe41090e466fc161df9619dc377ec72f7297 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sun, 4 Jun 2017 12:51:15 +0900 Subject: Removed RoomMessageEvent::userId in favor of RoomEvent::senderId --- events/roommessageevent.h | 2 -- 1 file changed, 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; -- cgit v1.2.3