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/widgetgroup.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/widgetgroup.h')
-rw-r--r-- | src/gui/widgets/widgetgroup.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/widgets/widgetgroup.h b/src/gui/widgets/widgetgroup.h index 55507f316..308c8fb8a 100644 --- a/src/gui/widgets/widgetgroup.h +++ b/src/gui/widgets/widgetgroup.h @@ -33,10 +33,6 @@ class WidgetGroup : public Container, public gcn::ActionListener { public: - WidgetGroup(const Widget2 *const widget, - const std::string &group, const int height, - const int spacing); - A_DELETE_COPY(WidgetGroup) virtual void addButton(const std::string &tag); @@ -57,6 +53,10 @@ class WidgetGroup : public Container, const A_WARN_UNUSED = 0; protected: + WidgetGroup(const Widget2 *const widget, + const std::string &group, const int height, + const int spacing); + int mSpacing; int mCount; std::string mGroup; |