diff options
-rw-r--r-- | Libraries/LibGUI/TableView.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibGUI/TableView.h b/Libraries/LibGUI/TableView.h index b876c337fa..7159a9fa19 100644 --- a/Libraries/LibGUI/TableView.h +++ b/Libraries/LibGUI/TableView.h @@ -53,11 +53,11 @@ public: CursorStyle cursor_style() const { return m_cursor_style; } void set_cursor_style(CursorStyle); + virtual void move_cursor(CursorMovement, SelectionUpdate) override; + protected: TableView(); - virtual void move_cursor(CursorMovement, SelectionUpdate) override; - virtual void keydown_event(KeyEvent&) override; virtual void paint_event(PaintEvent&) override; |