summaryrefslogtreecommitdiff
path: root/Libraries
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-08-28 21:02:46 +0200
committerAndreas Kling <kling@serenityos.org>2020-08-28 21:02:46 +0200
commit70d3dd5b8728d6cf12659259fb382442458c1789 (patch)
tree7e952b4e61bdbcbd943dd84aea5789b737556ccb /Libraries
parent1847219cbfe5c42367e63359baf08d785d8d870c (diff)
downloadserenity-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.h4
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;