mirror of
https://github.com/libretro/RetroArch
synced 2025-01-01 12:11:47 +00:00
-Woverloaded-virtual fix
This commit is contained in:
parent
30e48b46b3
commit
ef318533c3
@ -228,7 +228,7 @@ QModelIndex GridView::indexAt(const QPoint &point_) const
|
||||
return QModelIndex();
|
||||
}
|
||||
|
||||
void GridView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
|
||||
void GridView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector<int> &roles)
|
||||
{
|
||||
m_hashIsDirty = true;
|
||||
QAbstractItemView::dataChanged(topLeft, bottomRight);
|
||||
|
@ -57,7 +57,7 @@ signals:
|
||||
void visibleItemsChangedMaybe() const;
|
||||
|
||||
protected slots:
|
||||
void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
|
||||
void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector<int> &roles = QVector<int>());
|
||||
void rowsInserted(const QModelIndex &parent, int start, int end);
|
||||
void rowsRemoved(const QModelIndex &parent, int start, int end);
|
||||
void updateGeometries();
|
||||
|
Loading…
Reference in New Issue
Block a user