1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:07:44 +00:00

LibWeb: Remove now-duplicated actions from IPWV regarding text selection

This commit is contained in:
Timothy Flynn 2021-07-14 08:55:54 -04:00 committed by Andreas Kling
parent 615a1c7210
commit 22ab512f39
2 changed files with 0 additions and 15 deletions

View file

@ -42,9 +42,6 @@ public:
void set_should_show_line_box_borders(bool value) { m_should_show_line_box_borders = value; }
GUI::Action& select_all_action() { return *m_select_all_action; }
GUI::Action& copy_action() { return *m_copy_action; }
String selected_text() const;
void select_all();
@ -99,9 +96,6 @@ private:
bool m_should_show_line_box_borders { false };
NonnullOwnPtr<Page> m_page;
RefPtr<GUI::Action> m_copy_action;
RefPtr<GUI::Action> m_select_all_action;
};
}