diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-08 14:46:56 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-08 14:46:56 +0100 |
commit | 061de37889b0fa4bf8baae1f11693950297418c5 (patch) | |
tree | 3be3504190d8b1b82e82d84acb6c1d8041b1308f /lib/events | |
parent | 316069f3c342b64598a40d9d7fd6e015ec0c91dd (diff) | |
download | libquotient-061de37889b0fa4bf8baae1f11693950297418c5.tar.gz libquotient-061de37889b0fa4bf8baae1f11693950297418c5.zip |
Q_DISABLE_MOVE/COPY_MOVE; QT_IGNORE_DEPRECATIONS
DISABLE_MOVE is no more; instead, the library provides Q_DISABLE_MOVE
(and also Q_DISABLE_COPY_MOVE while at it) for Qt pre-5.13 that don't
have it yet. Same for QT_IGNORE_DEPRECATIONS - it only arrived in 5.15
but all the building pieces existed prior so libQuotient has it
regardless of the Qt version used for building.
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/event.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/events/event.h b/lib/events/event.h index f8f8311d..78853ced 100644 --- a/lib/events/event.h +++ b/lib/events/event.h @@ -76,8 +76,7 @@ public: private: EventTypeRegistry() = default; - Q_DISABLE_COPY(EventTypeRegistry) - DISABLE_MOVE(EventTypeRegistry) + Q_DISABLE_COPY_MOVE(EventTypeRegistry) static EventTypeRegistry& get() { |