diff options
Diffstat (limited to 'Widgets/Font.h')
-rw-r--r-- | Widgets/Font.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Widgets/Font.h b/Widgets/Font.h index 6d62ccf979..b41d371bcf 100644 --- a/Widgets/Font.h +++ b/Widgets/Font.h @@ -1,6 +1,6 @@ #pragma once -#include "CBitmap.h" +#include "CharacterBitmap.h" #include <AK/Retainable.h> #include <AK/RetainPtr.h> #include <AK/Types.h> @@ -11,7 +11,7 @@ public: ~Font(); - const CBitmap* glyphBitmap(byte) const; + const CharacterBitmap* glyphBitmap(byte) const; byte glyphWidth() const { return m_glyphWidth; } byte glyphHeight() const { return m_glyphHeight; } @@ -20,7 +20,7 @@ private: Font(const char* const* glyphs, byte glyphWidth, byte glyphHeight, byte firstGlyph, byte lastGlyph); const char* const* m_glyphs { nullptr }; - mutable RetainPtr<CBitmap> m_bitmaps[256]; + mutable RetainPtr<CharacterBitmap> m_bitmaps[256]; byte m_glyphWidth { 0 }; byte m_glyphHeight { 0 }; |