diff options
Diffstat (limited to 'src/gui/widgets/tablemodel.h')
-rw-r--r-- | src/gui/widgets/tablemodel.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/gui/widgets/tablemodel.h b/src/gui/widgets/tablemodel.h index 231a5f5e1..b6122fcb8 100644 --- a/src/gui/widgets/tablemodel.h +++ b/src/gui/widgets/tablemodel.h @@ -147,14 +147,15 @@ public: */ void resize(); - int getRows() const override A_WARN_UNUSED; - int getColumns() const override A_WARN_UNUSED; - int getRowHeight() const override A_WARN_UNUSED; + int getRows() const override final A_WARN_UNUSED; + int getColumns() const override final A_WARN_UNUSED; + int getRowHeight() const override final A_WARN_UNUSED; int getWidth() const A_WARN_UNUSED; int getHeight() const A_WARN_UNUSED; - int getColumnWidth(const int index) const override A_WARN_UNUSED; - gcn::Widget *getElementAt(const int row, const int column) - const override A_WARN_UNUSED; + int getColumnWidth(const int index) const override final A_WARN_UNUSED; + gcn::Widget *getElementAt(const int row, + const int column) const + override final A_WARN_UNUSED; protected: int mRows, mColumns; |