diff options
author | Linus Groh <mail@linusgroh.de> | 2022-12-04 18:43:54 +0000 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2022-12-25 07:58:58 -0700 |
commit | 5a5c4f079bda7467da9f5534bf7117ad9cb9c9e1 (patch) | |
tree | c910829aa13b519154779dc3e627599760ce5704 /Ladybird/FontPluginQt.h | |
parent | 97dd5a085fbd3e6dc2836b6b15c123ccc35de241 (diff) | |
download | serenity-5a5c4f079bda7467da9f5534bf7117ad9cb9c9e1.zip |
Ladybird: Update for AK::{String => DeprecatedString} rename
Diffstat (limited to 'Ladybird/FontPluginQt.h')
-rw-r--r-- | Ladybird/FontPluginQt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ladybird/FontPluginQt.h b/Ladybird/FontPluginQt.h index 94cb011ef2..35a577aed3 100644 --- a/Ladybird/FontPluginQt.h +++ b/Ladybird/FontPluginQt.h @@ -19,12 +19,12 @@ public: virtual Gfx::Font& default_font() override; virtual Gfx::Font& default_fixed_width_font() override; - virtual String generic_font_name(Web::Platform::GenericFont) override; + virtual DeprecatedString generic_font_name(Web::Platform::GenericFont) override; void update_generic_fonts(); private: - Vector<String> m_generic_font_names; + Vector<DeprecatedString> m_generic_font_names; RefPtr<Gfx::Font> m_default_font; RefPtr<Gfx::Font> m_default_fixed_width_font; }; |