Fix a few clang warning

Clang likes to complain when override is not used consistently.

Change-Id: I0fad18a7c3eb068aa1b6786243969aef53d1f42c
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
This commit is contained in:
Allan Sandfeld Jensen 2015-04-01 11:33:04 +02:00
parent 26a9783d55
commit b716216fc0
2 changed files with 3 additions and 3 deletions
src/platformsupport/fbconvenience

View File

@ -70,8 +70,8 @@ public:
void lock();
void unlock();
void beginPaint(const QRegion &);
void endPaint();
void beginPaint(const QRegion &) Q_DECL_OVERRIDE;
void endPaint() Q_DECL_OVERRIDE;
protected:
friend class QFbWindow;

View File

@ -93,7 +93,7 @@ protected:
virtual QRegion doRedraw();
void initializeCompositor();
bool event(QEvent *event);
bool event(QEvent *event) Q_DECL_OVERRIDE;
QFbWindow *windowForId(WId wid) const;