Codechange: Return fontcache font name as std::string.

This commit is contained in:
Peter Nelson
2023-05-26 19:32:41 +01:00
committed by PeterN
parent 90fdf17e39
commit 9976293c1e
6 changed files with 6 additions and 6 deletions

View File

@@ -42,7 +42,7 @@ public:
~FreeTypeFontCache();
void ClearFontCache() override;
GlyphID MapCharToGlyph(WChar key) override;
const char *GetFontName() override { return face->family_name; }
std::string GetFontName() override { return face->family_name; }
bool IsBuiltInFont() override { return false; }
const void *GetOSHandle() override { return &face; }
};