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/roomcreateevent.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/roomcreateevent.h')
-rw-r--r-- | lib/events/roomcreateevent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/events/roomcreateevent.h b/lib/events/roomcreateevent.h index 2709258f..5968e187 100644 --- a/lib/events/roomcreateevent.h +++ b/lib/events/roomcreateevent.h @@ -7,11 +7,11 @@ #include "quotient_common.h" namespace Quotient { -class QUOTIENT_API RoomCreateEvent : public StateEventBase { +class QUOTIENT_API RoomCreateEvent : public StateEvent { public: QUO_EVENT(RoomCreateEvent, "m.room.create") - using StateEventBase::StateEventBase; + using StateEvent::StateEvent; struct Predecessor { QString roomId; |