diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-08-11 17:01:41 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-08-11 17:01:41 +0900 |
commit | e9ae0d5eaac12a276ea352f1e633fb22cdd46828 (patch) | |
tree | 363d19a40e0e82b43d90059a66bba86d4c6e0d4a /lib/events/encryptionevent.h | |
parent | a3223e749d6f6c72b7c0ef638a1314d8bc77bc06 (diff) | |
download | libquotient-e9ae0d5eaac12a276ea352f1e633fb22cdd46828.tar.gz libquotient-e9ae0d5eaac12a276ea352f1e633fb22cdd46828.zip |
Now that we're C++17, remove old compatibility cruft
Diffstat (limited to 'lib/events/encryptionevent.h')
-rw-r--r-- | lib/events/encryptionevent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/events/encryptionevent.h b/lib/events/encryptionevent.h index 7bbcc418..cbd3ba4a 100644 --- a/lib/events/encryptionevent.h +++ b/lib/events/encryptionevent.h @@ -66,7 +66,7 @@ public: int rotationPeriodMsgs() const { return content().rotationPeriodMsgs; } private: - REGISTER_ENUM(EncryptionType) + Q_ENUM(EncryptionType) }; REGISTER_EVENT_TYPE(EncryptionEvent) |