diff options
author | Timothy Flynn <trflynn89@pm.me> | 2023-01-08 19:23:00 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-09 23:00:24 +0000 |
commit | f3db548a3d068c051c4d6eba970b89422a6b9522 (patch) | |
tree | df8846e5699175b425ca8d07b7b6350c0a04dcf7 /Userland/Libraries/LibWeb/DOM/DocumentFragment.h | |
parent | 2eacc7aec1b2b1cc5a491727baa75817ca819bc5 (diff) | |
download | serenity-f3db548a3d068c051c4d6eba970b89422a6b9522.zip |
AK+Everywhere: Rename FlyString to DeprecatedFlyString
DeprecatedFlyString relies heavily on DeprecatedString's StringImpl, so
let's rename it to A) match the name of DeprecatedString, B) write a new
FlyString class that is tied to String.
Diffstat (limited to 'Userland/Libraries/LibWeb/DOM/DocumentFragment.h')
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/DocumentFragment.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/DOM/DocumentFragment.h b/Userland/Libraries/LibWeb/DOM/DocumentFragment.h index e0c5213d42..47116712a8 100644 --- a/Userland/Libraries/LibWeb/DOM/DocumentFragment.h +++ b/Userland/Libraries/LibWeb/DOM/DocumentFragment.h @@ -6,7 +6,7 @@ #pragma once -#include <AK/FlyString.h> +#include <AK/DeprecatedFlyString.h> #include <LibWeb/DOM/Element.h> #include <LibWeb/DOM/NonElementParentNode.h> #include <LibWeb/DOM/ParentNode.h> @@ -23,7 +23,7 @@ public: virtual ~DocumentFragment() override = default; - virtual FlyString node_name() const override { return "#document-fragment"; } + virtual DeprecatedFlyString node_name() const override { return "#document-fragment"; } Element* host() { return m_host.ptr(); } Element const* host() const { return m_host.ptr(); } |