diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-27 09:35:07 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-27 09:35:07 +0200 |
commit | 2b02deef283f14369bedf8748faf119866b7aab4 (patch) | |
tree | 4ddcc6662e65dc9f37607c5cec87b910f74d1c19 /Libraries | |
parent | 7dc7f11ed8355833b2432b65c1c4ef05ee1782f8 (diff) | |
download | serenity-2b02deef283f14369bedf8748faf119866b7aab4.zip |
GWidget: Remove unused is_widget() virtual.
This is implemented as a bool member in CObject, not a virtual.
Diffstat (limited to 'Libraries')
-rw-r--r-- | Libraries/LibGUI/GWidget.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Libraries/LibGUI/GWidget.h b/Libraries/LibGUI/GWidget.h index 3d4bb00e51..cb9f99f9a1 100644 --- a/Libraries/LibGUI/GWidget.h +++ b/Libraries/LibGUI/GWidget.h @@ -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&); |