1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:07:34 +00:00

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
parent faab2fe101
commit 1c77867c78
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 };