diff options
Diffstat (limited to 'src/gui/widgets/tabbedarea.h')
-rw-r--r-- | src/gui/widgets/tabbedarea.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/widgets/tabbedarea.h b/src/gui/widgets/tabbedarea.h index 7be1391a5..ca2857709 100644 --- a/src/gui/widgets/tabbedarea.h +++ b/src/gui/widgets/tabbedarea.h @@ -164,9 +164,6 @@ class TabbedArea final : public Widget2, bool getFollowDownScroll() const A_WARN_UNUSED { return mFollowDownScroll; } - void fixSize() - { adjustSize(); } - void keyPressed(gcn::KeyEvent& keyEvent) override; void setBlockSwitching(const bool b) @@ -185,6 +182,8 @@ class TabbedArea final : public Widget2, void setResizeHeight(bool b) { mResizeHeight = b; } + void adjustWidget(gcn::Widget *const widget) const; + private: typedef std::vector <std::pair<Tab*, gcn::Widget*> > TabContainer; |