diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-25 18:35:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-25 18:35:21 +0300 |
commit | 71f88c02f79a1164430eec1de3e15edec011a15e (patch) | |
tree | 6a0772ee943a41314b5abd92fed0ce269faced27 /src/gui/widgets/tablemodel.h | |
parent | 6c05739c62484dae8d5ed9fb0dfdb6590aacfe88 (diff) | |
download | plus-71f88c02f79a1164430eec1de3e15edec011a15e.tar.gz plus-71f88c02f79a1164430eec1de3e15edec011a15e.tar.bz2 plus-71f88c02f79a1164430eec1de3e15edec011a15e.tar.xz plus-71f88c02f79a1164430eec1de3e15edec011a15e.zip |
improve construcors in abstract classes.
Also add some missing final to classes.
Diffstat (limited to 'src/gui/widgets/tablemodel.h')
-rw-r--r-- | src/gui/widgets/tablemodel.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/widgets/tablemodel.h b/src/gui/widgets/tablemodel.h index 427b8bf3a..7d7daacb9 100644 --- a/src/gui/widgets/tablemodel.h +++ b/src/gui/widgets/tablemodel.h @@ -57,10 +57,6 @@ public: class TableModel { public: - TableModel() : - listeners() - { - } virtual ~TableModel() { } @@ -95,6 +91,11 @@ public: virtual void removeListener(TableModelListener *const listener); protected: + TableModel() : + listeners() + { + } + /** * Tells all listeners that the table is about to see an update */ |