GWidget: Remove unused is_widget() virtual.

This is implemented as a bool member in CObject, not a virtual.
This commit is contained in:
Andreas Kling 2019-07-27 09:35:07 +02:00
commit 2b02deef28
Notes: sideshowbarker 2024-07-19 13:02:29 +09:00

View file

@ -208,8 +208,6 @@ public:
virtual bool is_abstract_button() const { return false; }
private:
virtual bool is_widget() const final { return true; }
void handle_paint_event(GPaintEvent&);
void handle_resize_event(GResizeEvent&);
void handle_mousedown_event(GMouseEvent&);