summaryrefslogtreecommitdiff
path: root/src/widget_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/widget_type.h')
-rw-r--r--src/widget_type.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/widget_type.h b/src/widget_type.h
index 7b5597ed7..961a6c4c9 100644
--- a/src/widget_type.h
+++ b/src/widget_type.h
@@ -632,15 +632,12 @@ public:
* Also assign the scrollbar to other widgets using #SetScrollbar() to make the mousewheel work.
* @ingroup NestedWidgets
*/
-class NWidgetScrollbar : public NWidgetCore {
+class NWidgetScrollbar : public NWidgetCore, public Scrollbar {
public:
NWidgetScrollbar(WidgetType tp, Colours colour, int index);
/* virtual */ void SetupSmallestSize(Window *w, bool init_array);
/* virtual */ void Draw(const Window *w);
-
- const Scrollbar *GetScrollbar(const Window *w) const;
- Scrollbar *GetScrollbar(Window *w) const;
};
/**