aboutsummaryrefslogtreecommitdiff
path: root/lib/room.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/room.h')
-rw-r--r--lib/room.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/room.h b/lib/room.h
index 55dde2ee..873c47d3 100644
--- a/lib/room.h
+++ b/lib/room.h
@@ -142,10 +142,13 @@ public:
TagsChange = 0x40,
MembersChange = 0x80,
/* = 0x100, */
- AccountDataChange = 0x200,
+ AccountDataChange Q_DECL_ENUMERATOR_DEPRECATED_X(
+ "AccountDataChange will be merged into OtherChange in 0.8") = 0x200,
SummaryChange = 0x400,
- ReadMarkerChange = 0x800,
+ ReadMarkerChange Q_DECL_ENUMERATOR_DEPRECATED_X(
+ "ReadMarkerChange will be merged into OtherChange in 0.8") = 0x800,
OtherChange = 0x8000,
+ OtherChanges = OtherChange,
AnyChange = 0xFFFF
};
QUO_DECLARE_FLAGS(Changes, Change)