fbbackingstore: Don't overload inherited virtual function
The QPlatformBackingStore::endPaint function does not take any parameters. Change-Id: If15d7824d65a52c38332c6676c12a954469a58ab Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>bb10
parent
4d5f3cf627
commit
3b65c716e5
|
|
@ -79,9 +79,8 @@ void QFbBackingStore::beginPaint(const QRegion ®ion)
|
|||
Q_UNUSED(region);
|
||||
}
|
||||
|
||||
void QFbBackingStore::endPaint(const QRegion ®ion)
|
||||
void QFbBackingStore::endPaint()
|
||||
{
|
||||
Q_UNUSED(region);
|
||||
}
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ public:
|
|||
virtual void flush(QWindow *window, const QRegion ®ion, const QPoint &offset);
|
||||
|
||||
virtual void beginPaint(const QRegion ®ion);
|
||||
virtual void endPaint(const QRegion ®ion);
|
||||
virtual void endPaint();
|
||||
|
||||
virtual void resize(const QSize &size, const QRegion ®ion);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue