Make QAbstractItemModel::resetInternalData virtual for Qt 6

Change-Id: I9cfeb93addb717abc187a8dab8d24076f68bd61d
Reviewed-by: David Faure <david.faure@kdab.com>
Reviewed-by: Luca Beldi <v.ronin@yahoo.it>
Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
bb10
Frederik Gladhorn 2018-10-28 10:10:11 +01:00 committed by Luca Beldi
parent 8713f22372
commit 5668e059f2
1 changed files with 3 additions and 1 deletions

View File

@ -302,7 +302,9 @@ public Q_SLOTS:
virtual void revert();
protected Q_SLOTS:
// Qt 6: Make virtual
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
virtual
#endif
void resetInternalData();
protected: