diff --git a/src/widget.cpp b/src/widget.cpp index b4c0c9819c..e39712e9c2 100644 --- a/src/widget.cpp +++ b/src/widget.cpp @@ -2272,13 +2272,6 @@ void NWidgetLeaf::Draw(const Window *w) } } -void NWidgetLeaf::Invalidate(const Window *w) const -{ - if (this->type == WWT_EMPTY) return; // Don't repaint dummy widgets. - NWidgetBase::Invalidate(w); -} - - Scrollbar *NWidgetLeaf::FindScrollbar(Window *w, bool allow_next) { if (this->type == WWT_SCROLLBAR) return &w->vscroll; diff --git a/src/widget_type.h b/src/widget_type.h index b00f718039..fdab0d9eb1 100644 --- a/src/widget_type.h +++ b/src/widget_type.h @@ -516,7 +516,6 @@ public: /* virtual */ void SetupSmallestSize(Window *w, bool init_array); /* virtual */ void Draw(const Window *w); - /* virtual */ void Invalidate(const Window *w) const; /* virtual */ Scrollbar *FindScrollbar(Window *w, bool allow_next = true); static void InvalidateDimensionCache();