1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-03-21 02:40:05 +00:00

Merge pull request from lioncash/override

graphics_breakpoints_p: Add missing override specifier
This commit is contained in:
Yuri Kunde Schlesner 2015-09-11 18:24:24 -03:00
commit 5bf8eed96c

View File

@ -23,7 +23,7 @@ public:
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
Qt::ItemFlags flags(const QModelIndex &index) const;
Qt::ItemFlags flags(const QModelIndex &index) const override;
bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override;