diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-18 01:12:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-18 22:05:06 +0300 |
commit | f24b4360e73d45bc0830d2964c06e295890e5f18 (patch) | |
tree | 6ce4f8440b22ec665aa94403643c6cb0df1b47f0 /src/gui/windows/shortcutwindow.cpp | |
parent | 14a0a04b2bb3928f7429fd748dd40e1843fca571 (diff) | |
download | plus-f24b4360e73d45bc0830d2964c06e295890e5f18.tar.gz plus-f24b4360e73d45bc0830d2964c06e295890e5f18.tar.bz2 plus-f24b4360e73d45bc0830d2964c06e295890e5f18.tar.xz plus-f24b4360e73d45bc0830d2964c06e295890e5f18.zip |
derive Widget from Widget2.
Diffstat (limited to 'src/gui/windows/shortcutwindow.cpp')
-rw-r--r-- | src/gui/windows/shortcutwindow.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/windows/shortcutwindow.cpp b/src/gui/windows/shortcutwindow.cpp index 50bc6fcd1..5b3c03e90 100644 --- a/src/gui/windows/shortcutwindow.cpp +++ b/src/gui/windows/shortcutwindow.cpp @@ -40,7 +40,8 @@ class ShortcutTab final : public Tab { public: ShortcutTab(const Widget2 *const widget, - std::string name, ShortcutContainer *const content) : + std::string name, + ShortcutContainer *const content) : Tab(widget), mContent(content) { @@ -58,7 +59,7 @@ ShortcutWindow::ShortcutWindow(const std::string &restrict title, int width, int height) : Window("Window", false, nullptr, skinFile), mItems(content), - mScrollArea(new ScrollArea(mItems, false)), + mScrollArea(new ScrollArea(this, mItems, false)), mTabs(nullptr), mPages() { @@ -160,7 +161,7 @@ ShortcutWindow::~ShortcutWindow() void ShortcutWindow::addTab(const std::string &name, ShortcutContainer *const content) { - ScrollArea *const scroll = new ScrollArea(content, false); + ScrollArea *const scroll = new ScrollArea(this, content, false); scroll->setPosition(SCROLL_PADDING, SCROLL_PADDING); scroll->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); content->setWidget2(this); |