mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:17:34 +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
21 changed files with 50 additions and 45 deletions
|
@ -17,7 +17,7 @@ class ProcessingInstruction final : public CharacterData {
|
|||
public:
|
||||
virtual ~ProcessingInstruction() override = default;
|
||||
|
||||
virtual DeprecatedFlyString node_name() const override { return m_target; }
|
||||
virtual FlyString node_name() const override { return MUST(FlyString::from_deprecated_fly_string(m_target)); }
|
||||
|
||||
DeprecatedString const& target() const { return m_target; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue