diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-24 12:15:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-24 12:15:03 +0300 |
commit | 67a349cefcb72c7770b98bf645a7eca35695bb2b (patch) | |
tree | 07dbd166893ef783e56e361ed5be7559fef7a2a4 /src/gui/widgets/tablemodel.h | |
parent | 7d57a3aaa1fec1f28fa8c65e6e5ca56b97871cc2 (diff) | |
download | plus-67a349cefcb72c7770b98bf645a7eca35695bb2b.tar.gz plus-67a349cefcb72c7770b98bf645a7eca35695bb2b.tar.bz2 plus-67a349cefcb72c7770b98bf645a7eca35695bb2b.tar.xz plus-67a349cefcb72c7770b98bf645a7eca35695bb2b.zip |
add final keyword to widgets files.
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; |