diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-18 00:45:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-18 00:45:23 +0300 |
commit | 14a0a04b2bb3928f7429fd748dd40e1843fca571 (patch) | |
tree | 28f772d80afd66838b0123efeac005f445a39bce /src/gui/widgets/scrollarea.h | |
parent | 1d71d02a40dc1f4c50572bf0681bbc2907a3c361 (diff) | |
download | plus-14a0a04b2bb3928f7429fd748dd40e1843fca571.tar.gz plus-14a0a04b2bb3928f7429fd748dd40e1843fca571.tar.bz2 plus-14a0a04b2bb3928f7429fd748dd40e1843fca571.tar.xz plus-14a0a04b2bb3928f7429fd748dd40e1843fca571.zip |
Remove default constructor from Widget2.
Diffstat (limited to 'src/gui/widgets/scrollarea.h')
-rw-r--r-- | src/gui/widgets/scrollarea.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/widgets/scrollarea.h b/src/gui/widgets/scrollarea.h index 3f6195271..bc25baa27 100644 --- a/src/gui/widgets/scrollarea.h +++ b/src/gui/widgets/scrollarea.h @@ -52,7 +52,8 @@ class ScrollArea final : public gcn::ScrollArea, * Constructor that takes no content. Needed for use with the DropDown * class. */ - explicit ScrollArea(const bool opaque = true, + explicit ScrollArea(Widget2 *const widget, + const bool opaque = true, const std::string &skin = ""); /** @@ -60,7 +61,8 @@ class ScrollArea final : public gcn::ScrollArea, * * @param content the initial content to show in the scroll area */ - explicit ScrollArea(gcn::Widget *const widget, + explicit ScrollArea(Widget2 *const widget2, + gcn::Widget *const widget, const bool opaque = true, const std::string &skin = ""); |