diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-02-18 15:13:29 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-02-19 00:51:16 +0100 |
commit | c2f0b20d6ba028fcc094dea4d1108b80f6170d55 (patch) | |
tree | 741636ebb6a8765195f158115403b97c6e528934 /Userland/Libraries/LibWeb/CSS/FontFace.cpp | |
parent | 33e9c4e1b2f4e678cef0e3d49b1754c1807ac2a3 (diff) | |
download | serenity-c2f0b20d6ba028fcc094dea4d1108b80f6170d55.zip |
LibWeb: Port FontFace to new Strings
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/FontFace.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/FontFace.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/FontFace.cpp b/Userland/Libraries/LibWeb/CSS/FontFace.cpp index b4b585258c..8babc28f5b 100644 --- a/Userland/Libraries/LibWeb/CSS/FontFace.cpp +++ b/Userland/Libraries/LibWeb/CSS/FontFace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org> + * Copyright (c) 2022-2023, Sam Atkins <atkinssj@serenityos.org> * * SPDX-License-Identifier: BSD-2-Clause */ @@ -8,7 +8,7 @@ namespace Web::CSS { -FontFace::FontFace(DeprecatedFlyString font_family, Vector<Source> sources, Vector<UnicodeRange> unicode_ranges) +FontFace::FontFace(FlyString font_family, Vector<Source> sources, Vector<UnicodeRange> unicode_ranges) : m_font_family(move(font_family)) , m_sources(move(sources)) , m_unicode_ranges(move(unicode_ranges)) |