mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:57:45 +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
|
@ -130,7 +130,7 @@ public:
|
|||
|
||||
CSS::StyleSheetList* style_sheets_for_bindings() { return &style_sheets(); }
|
||||
|
||||
virtual DeprecatedFlyString node_name() const override { return "#document"; }
|
||||
virtual FlyString node_name() const override { return "#document"_fly_string; }
|
||||
|
||||
void set_hovered_node(Node*);
|
||||
Node* hovered_node() { return m_hovered_node.ptr(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue