Add missing Q_DECL_OVERRIDEs

Change-Id: I54552d9fdd0bc8871247246aea1da14848c4f7a0
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@theqtcompany.com>
bb10
Morten Johan Sørvig 2016-05-04 12:07:20 +02:00 committed by Morten Johan Sørvig
parent 8d45759432
commit 2c60125ef9
1 changed files with 3 additions and 3 deletions

View File

@ -5862,7 +5862,7 @@ public:
startTimer(1000);
}
void timerEvent(QTimerEvent *)
void timerEvent(QTimerEvent *) Q_DECL_OVERRIDE
{
switch (state++) {
case 0:
@ -5885,7 +5885,7 @@ public:
return false;
}
bool nativeEvent(const QByteArray &eventType, void *message, long *)
bool nativeEvent(const QByteArray &eventType, void *message, long *) Q_DECL_OVERRIDE
{
if (isMapNotify(eventType, message))
gotExpectedMapNotify = true;
@ -5893,7 +5893,7 @@ public:
}
// QAbstractNativeEventFilter interface
virtual bool nativeEventFilter(const QByteArray &eventType, void *message, long *) Q_DECL_OVERRIDE
bool nativeEventFilter(const QByteArray &eventType, void *message, long *) Q_DECL_OVERRIDE
{
if (isMapNotify(eventType, message))
gotExpectedGlobalEvent = true;