mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
LibGUI: Make TableView::move_cursor() public
It was already public in the base class, so hiding it here was just a mistake.
This commit is contained in:
parent
1847219cbf
commit
70d3dd5b87
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue