summaryrefslogtreecommitdiff
path: root/Libraries
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-27 09:35:07 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-27 09:35:07 +0200
commit2b02deef283f14369bedf8748faf119866b7aab4 (patch)
tree4ddcc6662e65dc9f37607c5cec87b910f74d1c19 /Libraries
parent7dc7f11ed8355833b2432b65c1c4ef05ee1782f8 (diff)
downloadserenity-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.h2
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&);