Fix missing override on function

This commit is contained in:
baldurk
2021-06-01 21:35:10 +01:00
parent ea16d31aa3
commit 21598b5d0c
2 changed files with 2 additions and 1 deletions
@@ -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)
+1 -1
View File
@@ -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);