diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-01-05 15:28:38 +0200 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-01-05 15:28:38 +0200 |
commit | 953634c9b5942d7c02c81484252ceb2a61e2ab57 (patch) | |
tree | 57debb477c207518593ea14e2c096ae7c7be0d01 /include | |
parent | Create widgets on demand for messages added to the end of the timeline (diff) | |
download | nheko-953634c9b5942d7c02c81484252ceb2a61e2ab57.tar.xz |
Enable read receipts on messages sent through nheko
Diffstat (limited to 'include')
-rw-r--r-- | include/timeline/TimelineItem.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/timeline/TimelineItem.h b/include/timeline/TimelineItem.h index d7e7911a..9a0aee1d 100644 --- a/include/timeline/TimelineItem.h +++ b/include/timeline/TimelineItem.h @@ -83,6 +83,7 @@ public: void setUserAvatar(const QImage &pixmap); DescInfo descriptionMessage() const { return descriptionMsg_; } QString eventId() const { return event_id_; } + void setEventId(const QString &event_id) { event_id_ = event_id; } ~TimelineItem(); |