aboutsummaryrefslogtreecommitdiffstats
path: root/qt-models/treemodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models/treemodel.h')
-rw-r--r--qt-models/treemodel.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/qt-models/treemodel.h b/qt-models/treemodel.h
index eae36c58c..e68ae1c32 100644
--- a/qt-models/treemodel.h
+++ b/qt-models/treemodel.h
@@ -26,11 +26,11 @@ class TreeModel : public QAbstractItemModel {
public:
TreeModel(QObject *parent = 0);
~TreeModel();
- 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;
+ 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;
protected:
int columns;