LibWeb: Port FontCache to new Strings

This commit is contained in:
Sam Atkins 2023-02-17 14:06:55 +00:00 committed by Linus Groh
commit 1c77867c78
Notes: sideshowbarker 2024-07-17 00:03:47 +09:00
4 changed files with 18 additions and 21 deletions

View file

@ -6,14 +6,13 @@
#pragma once
#include <AK/DeprecatedFlyString.h>
#include <AK/DeprecatedString.h>
#include <AK/FlyString.h>
#include <AK/HashMap.h>
#include <LibGfx/Font/Font.h>
#include <LibGfx/Forward.h>
struct FontSelector {
DeprecatedFlyString family;
FlyString family;
float point_size { 0 };
int weight { 0 };
int width { 0 };