From 783d83012551df128d044382f6dd2047c5269700 Mon Sep 17 00:00:00 2001 From: Alexey Rusakov Date: Sat, 1 Jan 2022 12:48:28 +0100 Subject: 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`. --- lib/room.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3