diff options
Diffstat (limited to 'Userland/Libraries/LibTTF/Font.h')
-rw-r--r-- | Userland/Libraries/LibTTF/Font.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibTTF/Font.h b/Userland/Libraries/LibTTF/Font.h index a14bc21412..19e619261a 100644 --- a/Userland/Libraries/LibTTF/Font.h +++ b/Userland/Libraries/LibTTF/Font.h @@ -168,7 +168,7 @@ private: float m_y_scale { 0.0f }; float m_point_width { 0.0f }; float m_point_height { 0.0f }; - mutable AK::HashMap<u32, RefPtr<Gfx::Bitmap>> m_cached_glyph_bitmaps; + mutable HashMap<u32, RefPtr<Gfx::Bitmap>> m_cached_glyph_bitmaps; }; } |