1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:37:35 +00:00

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
parent 7dc7f11ed8
commit 2b02deef28

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&);