diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-07-30 08:10:48 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-07-30 08:10:48 +0200 |
commit | e0d9125de7ac132c2a54152015687abbe5e73193 (patch) | |
tree | dc882e23ca46aa3a4803faae3f852af76a63e838 /lib/events | |
parent | 42f20f827565a2bdd9e1373b7ee2c408991b9d44 (diff) | |
download | libquotient-e0d9125de7ac132c2a54152015687abbe5e73193.tar.gz libquotient-e0d9125de7ac132c2a54152015687abbe5e73193.zip |
Room: drop 0.6 deprecations; deprecate RoomAliasEvent
Namely memberCount(), localAliases(), remoteAliases(), timelineEdge().
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/simplestateevents.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/events/simplestateevents.h b/lib/events/simplestateevents.h index d6261a8f..3bac54e6 100644 --- a/lib/events/simplestateevents.h +++ b/lib/events/simplestateevents.h @@ -56,8 +56,10 @@ namespace EventContent { DEFINE_SIMPLE_STATE_EVENT(RoomNameEvent, "m.room.name", QString, name) DEFINE_SIMPLE_STATE_EVENT(RoomTopicEvent, "m.room.topic", QString, topic) -class RoomAliasesEvent - : public StateEvent<EventContent::SimpleContent<QStringList>> { +class [[deprecated( + "m.room.aliases events are deprecated by the Matrix spec; use" + " RoomCanonicalAliasEvent::altAliases() to get non-authoritative aliases")]] // +RoomAliasesEvent : public StateEvent<EventContent::SimpleContent<QStringList>> { public: DEFINE_EVENT_TYPEID("m.room.aliases", RoomAliasesEvent) explicit RoomAliasesEvent(const QJsonObject& obj) |