1
Fork 0
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:
Andreas Kling 2020-08-28 21:02:46 +02:00
parent 1847219cbf
commit 70d3dd5b87

View file

@ -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;