diff --git a/Userland/Libraries/LibGfx/Font/FontDatabase.cpp b/Userland/Libraries/LibGfx/Font/FontDatabase.cpp index 59bd281f6c..36f892e24b 100644 --- a/Userland/Libraries/LibGfx/Font/FontDatabase.cpp +++ b/Userland/Libraries/LibGfx/Font/FontDatabase.cpp @@ -116,8 +116,8 @@ Font& FontDatabase::default_fixed_width_font() } struct FontDatabase::Private { - HashMap> full_name_to_font_map; - HashMap>> typefaces; + HashMap, CaseInsensitiveStringTraits> full_name_to_font_map; + HashMap>, CaseInsensitiveStringTraits> typefaces; }; void FontDatabase::load_all_fonts_from_path(DeprecatedString const& root)