aboutsummaryrefslogtreecommitdiffstats
path: root/src/coap/qcoapreply.h
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2019-04-25 12:45:14 +0200
committerSona Kurazyan <sona.kurazyan@qt.io>2019-04-26 09:11:29 +0000
commit13e971992160f7e0ff90af59bdc9eef1c17f53e5 (patch)
treefadd7a60c556dcab906621516292855f3a10a6e7 /src/coap/qcoapreply.h
parent053cd359549efb1366a94a5e8cb14e4ca157776e (diff)
Replace the Q_DECL_OVERRIDE macros with 'override'
Change-Id: I32f3712ed2c160e1dc26397d58114fa441c0fc9b Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'src/coap/qcoapreply.h')
-rw-r--r--src/coap/qcoapreply.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coap/qcoapreply.h b/src/coap/qcoapreply.h
index 648dc3b..afdd5ea 100644
--- a/src/coap/qcoapreply.h
+++ b/src/coap/qcoapreply.h
@@ -73,8 +73,8 @@ protected:
explicit QCoapReply(QCoapReplyPrivate &dd, QObject *parent = nullptr);
- qint64 readData(char *data, qint64 maxSize) Q_DECL_OVERRIDE;
- qint64 writeData(const char *data, qint64 maxSize) Q_DECL_OVERRIDE;
+ qint64 readData(char *data, qint64 maxSize) override;
+ qint64 writeData(const char *data, qint64 maxSize) override;
Q_DECLARE_PRIVATE(QCoapReply)
Q_PRIVATE_SLOT(d_func(), void _q_setRunning(const QCoapToken &, QCoapMessageId))