diff options
| author | 2015-09-11 16:27:48 -0400 | |
|---|---|---|
| committer | 2015-09-11 16:32:02 -0400 | |
| commit | ec93d6e19a9d418f59f77812a1804932acf18903 (patch) | |
| tree | a619f00f69713ea9c0ca8073bd79a0ed291acdd8 | |
| parent | Merge pull request #1144 from lioncash/remove (diff) | |
| download | yuzu-ec93d6e19a9d418f59f77812a1804932acf18903.tar.gz yuzu-ec93d6e19a9d418f59f77812a1804932acf18903.tar.xz yuzu-ec93d6e19a9d418f59f77812a1804932acf18903.zip | |
graphics_breakpoints_p: Add missing override specifier
| -rw-r--r-- | src/citra_qt/debugger/graphics_breakpoints_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/graphics_breakpoints_p.h b/src/citra_qt/debugger/graphics_breakpoints_p.h index 00d8d5101..251114d06 100644 --- a/src/citra_qt/debugger/graphics_breakpoints_p.h +++ b/src/citra_qt/debugger/graphics_breakpoints_p.h | |||
| @@ -23,7 +23,7 @@ public: | |||
| 23 | int columnCount(const QModelIndex& parent = QModelIndex()) const override; | 23 | int columnCount(const QModelIndex& parent = QModelIndex()) const override; |
| 24 | int rowCount(const QModelIndex& parent = QModelIndex()) const override; | 24 | int rowCount(const QModelIndex& parent = QModelIndex()) const override; |
| 25 | QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; | 25 | QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; |
| 26 | Qt::ItemFlags flags(const QModelIndex &index) const; | 26 | Qt::ItemFlags flags(const QModelIndex &index) const override; |
| 27 | 27 | ||
| 28 | bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override; | 28 | bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override; |
| 29 | 29 | ||