diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-01 12:48:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-01 12:48:28 +0100 |
commit | 783d83012551df128d044382f6dd2047c5269700 (patch) | |
tree | 6b712f8d73ad6f1581b0caff2ea5c0c904a997c6 | |
parent | 7ec3ba834dd313c4408622da30e04cdc6f4cf7c7 (diff) | |
download | libquotient-783d83012551df128d044382f6dd2047c5269700.tar.gz libquotient-783d83012551df128d044382f6dd2047c5269700.zip |
OtherChange is Change::Other now
`Room::Change` has been changed to be an enum class recently; and it's values are no more suffixed with `Change`.
-rw-r--r-- | lib/room.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index 6854879c..edf5dcd9 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -2925,7 +2925,7 @@ Room::Changes Room::processStateEvent(const RoomEvent& e) } , [this] (const RoomPinnedEvent&) { emit pinnedEventsChanged(); - return OtherChange; + return Change::Other; } , [] (const RoomTopicEvent&) { return Change::Topic; |