mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 12:35:14 +00:00
LibWeb: Remove needless virtual qualifiers from EditEventHandler
This class does not inherit from any class, nor does any other class inherit from EditEventHandler.
This commit is contained in:
parent
5c73a31b4f
commit
f8d83b2922
Notes:
github-actions[bot]
2024-08-02 16:41:38 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/f8d83b29227 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/932 Reviewed-by: https://github.com/AtkinsSJ Reviewed-by: https://github.com/awesomekling Reviewed-by: https://github.com/shannonbooth
1 changed files with 5 additions and 5 deletions
|
@ -19,12 +19,12 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
virtual ~EditEventHandler() = default;
|
||||
~EditEventHandler() = default;
|
||||
|
||||
virtual void handle_delete_character_after(JS::NonnullGCPtr<DOM::Position>);
|
||||
virtual void handle_delete(DOM::Range&);
|
||||
virtual void handle_insert(JS::NonnullGCPtr<DOM::Position>, u32 code_point);
|
||||
virtual void handle_insert(JS::NonnullGCPtr<DOM::Position>, String);
|
||||
void handle_delete_character_after(JS::NonnullGCPtr<DOM::Position>);
|
||||
void handle_delete(DOM::Range&);
|
||||
void handle_insert(JS::NonnullGCPtr<DOM::Position>, u32 code_point);
|
||||
void handle_insert(JS::NonnullGCPtr<DOM::Position>, String);
|
||||
|
||||
private:
|
||||
JS::NonnullGCPtr<HTML::Navigable> m_navigable;
|
||||
|
|
Loading…
Add table
Reference in a new issue