diff options
Diffstat (limited to 'src/gui/widgets/tabbedarea.h')
-rw-r--r-- | src/gui/widgets/tabbedarea.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/tabbedarea.h b/src/gui/widgets/tabbedarea.h index 558b2696..5d0ccfcc 100644 --- a/src/gui/widgets/tabbedarea.h +++ b/src/gui/widgets/tabbedarea.h @@ -86,12 +86,12 @@ class TabbedArea final : public gcn::TabbedArea, public gcn::WidgetListener void addTab(const std::string &caption, gcn::Widget *widget) override; /** - * Overload the remove tab function as it's broken in guichan 0.8. + * Override the remove tab function as it's broken in guichan 0.8. */ - void removeTab(Tab *tab); + void removeTab(gcn::Tab *tab) override; /** - * Overload the logic function since it's broken in guichan 0.8. + * Override the logic function since it's broken in guichan 0.8. */ void logic() override; |