aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-01-01 12:48:28 +0100
committerGitHub <noreply@github.com>2022-01-01 12:48:28 +0100
commit783d83012551df128d044382f6dd2047c5269700 (patch)
tree6b712f8d73ad6f1581b0caff2ea5c0c904a997c6 /lib
parent7ec3ba834dd313c4408622da30e04cdc6f4cf7c7 (diff)
downloadlibquotient-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`.
Diffstat (limited to 'lib')
-rw-r--r--lib/room.cpp2
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;