diff options
author | Lioncash <mathew1800@gmail.com> | 2015-09-11 16:27:48 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-09-11 16:32:02 -0400 |
commit | ec93d6e19a9d418f59f77812a1804932acf18903 (patch) | |
tree | a619f00f69713ea9c0ca8073bd79a0ed291acdd8 /src | |
parent | ef622a07ffc95a1cd3229556244a0fa887cf2e6f (diff) |
graphics_breakpoints_p: Add missing override specifier
Diffstat (limited to 'src')
-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: 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; |