diff options
| author | Linus Jahn <lnj@kaidan.im> | 2020-04-01 16:36:38 +0200 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2020-04-01 16:38:37 +0200 |
| commit | 4c9b06545afee50b84bfae7a27bbe3dd48cc749a (patch) | |
| tree | 976fcfe8988e76c0dc1996c7a52b1533fee83a2a /src/base/QXmppStanza.h | |
| parent | 4a09a18ff1d786c5fdea7b1992f6937fa7cbc833 (diff) | |
| download | qxmpp-4c9b06545afee50b84bfae7a27bbe3dd48cc749a.tar.gz | |
Fix build with Qt 5.14
Q_DEPRECATED_X() can't be used on enum values anymore. The new
Q_DECL_ENUMERATOR_DEPRECATED_X() can be uesd instead, this is only
available since Qt 5.12, so I needed to define an empty fallback for
it.
Diffstat (limited to 'src/base/QXmppStanza.h')
| -rw-r--r-- | src/base/QXmppStanza.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/QXmppStanza.h b/src/base/QXmppStanza.h index 8eb1b47a..9bbc9634 100644 --- a/src/base/QXmppStanza.h +++ b/src/base/QXmppStanza.h @@ -133,7 +133,7 @@ public: #if QXMPP_DEPRECATED_SINCE(1, 3) /// Payment is required to perform the request. /// \deprecated This error condition is deprecated since QXmpp 1.3 as it was not adopted in RFC6120. - QT_DEPRECATED_X("The <payment-required/> error was removed in RFC6120") PaymentRequired, + PaymentRequired Q_DECL_ENUMERATOR_DEPRECATED_X("The <payment-required/> error was removed in RFC6120"), #endif RecipientUnavailable = 12, ///< The recipient is unavailable. Redirect, ///< The requested resource is available elsewhere. This is used in combination with a redirection URI. |
