diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-08-10 21:54:15 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-09-04 18:42:11 +0200 |
commit | 7251d6856993a08dd8ec1d4965a310e4cf8e97d3 (patch) | |
tree | d5647a3990f6f00c4d1ef459ac9c6f54e87f042a /lib/events/roomtombstoneevent.h | |
parent | bde38f86337d6f49b34b38016ab088d2f48ec371 (diff) | |
download | libquotient-7251d6856993a08dd8ec1d4965a310e4cf8e97d3.tar.gz libquotient-7251d6856993a08dd8ec1d4965a310e4cf8e97d3.zip |
StateEventBase -> StateEvent
Now that StateEvent name is vacated, the naming for event core classes
can be completely unified: Event, RoomEvent, CallEvent, StateEvent.
Diffstat (limited to 'lib/events/roomtombstoneevent.h')
-rw-r--r-- | lib/events/roomtombstoneevent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/events/roomtombstoneevent.h b/lib/events/roomtombstoneevent.h index 95743e32..c85b4dfd 100644 --- a/lib/events/roomtombstoneevent.h +++ b/lib/events/roomtombstoneevent.h @@ -6,11 +6,11 @@ #include "stateevent.h" namespace Quotient { -class QUOTIENT_API RoomTombstoneEvent : public StateEventBase { +class QUOTIENT_API RoomTombstoneEvent : public StateEvent { public: QUO_EVENT(RoomTombstoneEvent, "m.room.tombstone") - using StateEventBase::StateEventBase; + using StateEvent::StateEvent; QString serverMessage() const; QString successorRoomId() const; |