mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-23 06:05:45 +00:00
Fix missing override on function
This commit is contained in:
@@ -484,6 +484,7 @@ void RDTreeView::modelAboutToBeReset()
|
||||
void RDTreeView::rowsAboutToBeRemoved(const QModelIndex &parent, int first, int last)
|
||||
{
|
||||
m_currentHoverIndex = QModelIndex();
|
||||
QTreeView::rowsAboutToBeRemoved(parent, first, last);
|
||||
}
|
||||
|
||||
void RDTreeView::columnsAboutToBeRemoved(const QModelIndex &parent, int first, int last)
|
||||
|
||||
@@ -182,7 +182,7 @@ protected:
|
||||
|
||||
private slots:
|
||||
void modelAboutToBeReset();
|
||||
void rowsAboutToBeRemoved(const QModelIndex &parent, int first, int last);
|
||||
void rowsAboutToBeRemoved(const QModelIndex &parent, int first, int last) override;
|
||||
void columnsAboutToBeRemoved(const QModelIndex &parent, int first, int last);
|
||||
void rowsAboutToBeMoved(const QModelIndex &sourceParent, int sourceStart, int sourceEnd,
|
||||
const QModelIndex &destinationParent, int destinationRow);
|
||||
|
||||
Reference in New Issue
Block a user