mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-22 09:18:55 +00:00
LibWeb: Port Node interface from DeprecatedString to String
Which is fortunately quite straight forward :^)
This commit is contained in:
parent
a76ef04ae6
commit
8ce9e51c97
Notes:
sideshowbarker
2024-07-17 01:46:00 +09:00
Author: https://github.com/shannonbooth
Commit: 8ce9e51c97
Pull-request: https://github.com/SerenityOS/serenity/pull/21116
21 changed files with 50 additions and 45 deletions
|
@ -23,7 +23,7 @@ public:
|
|||
|
||||
virtual ~DocumentFragment() override = default;
|
||||
|
||||
virtual DeprecatedFlyString node_name() const override { return "#document-fragment"; }
|
||||
virtual FlyString node_name() const override { return "#document-fragment"_fly_string; }
|
||||
|
||||
Element* host() { return m_host.ptr(); }
|
||||
Element const* host() const { return m_host.ptr(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue