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:
parent
26a9783d55
commit
b716216fc0
src/platformsupport/fbconvenience
@ -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;
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user