diff options
Diffstat (limited to 'qt-models/treemodel.h')
-rw-r--r-- | qt-models/treemodel.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qt-models/treemodel.h b/qt-models/treemodel.h index 3b2b407e0..44f1e7f35 100644 --- a/qt-models/treemodel.h +++ b/qt-models/treemodel.h @@ -26,11 +26,11 @@ class TreeModel : public QAbstractItemModel { Q_OBJECT public: TreeModel(QObject *parent = 0); - QVariant data(const QModelIndex &index, int role) const; - int rowCount(const QModelIndex &parent = QModelIndex()) const; - int columnCount(const QModelIndex &parent = QModelIndex()) const; - QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const; - QModelIndex parent(const QModelIndex &child) const; + QVariant data(const QModelIndex &index, int role) const override; + int rowCount(const QModelIndex &parent = QModelIndex()) const override; + int columnCount(const QModelIndex &parent = QModelIndex()) const override; + QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override; + QModelIndex parent(const QModelIndex &child) const override; void clear(); protected: |