diff options
Diffstat (limited to 'qt-models/tankinfomodel.h')
-rw-r--r-- | qt-models/tankinfomodel.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qt-models/tankinfomodel.h b/qt-models/tankinfomodel.h index 7f79a466b..aa4113ca8 100644 --- a/qt-models/tankinfomodel.h +++ b/qt-models/tankinfomodel.h @@ -18,10 +18,10 @@ public: }; TankInfoModel(); - QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; - int rowCount(const QModelIndex &parent = QModelIndex()) const override; - bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) override; - bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override; + QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; + int rowCount(const QModelIndex &parent = QModelIndex()) const; + bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()); + bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole); const QString &biggerString() const; void clear(); public |