diff options
author | Andreas Kling <kling@serenityos.org> | 2020-08-28 21:02:46 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-28 21:02:46 +0200 |
commit | 70d3dd5b8728d6cf12659259fb382442458c1789 (patch) | |
tree | 7e952b4e61bdbcbd943dd84aea5789b737556ccb /Libraries | |
parent | 1847219cbfe5c42367e63359baf08d785d8d870c (diff) | |
download | serenity-70d3dd5b8728d6cf12659259fb382442458c1789.zip |
LibGUI: Make TableView::move_cursor() public
It was already public in the base class, so hiding it here was just
a mistake.
Diffstat (limited to 'Libraries')
-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; |