diff options
Diffstat (limited to 'core/fxge/cfx_fontmgr.h')
-rw-r--r-- | core/fxge/cfx_fontmgr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fxge/cfx_fontmgr.h b/core/fxge/cfx_fontmgr.h index 67357e4265..432f34b38c 100644 --- a/core/fxge/cfx_fontmgr.h +++ b/core/fxge/cfx_fontmgr.h @@ -26,11 +26,11 @@ class CFX_FontMgr { FXFT_Face GetCachedFace(const CFX_ByteString& face_name, int weight, - FX_BOOL bItalic, + bool bItalic, uint8_t*& pFontData); FXFT_Face AddCachedFace(const CFX_ByteString& face_name, int weight, - FX_BOOL bItalic, + bool bItalic, uint8_t* pData, uint32_t size, int face_index); @@ -48,7 +48,7 @@ class CFX_FontMgr { void ReleaseFace(FXFT_Face face); void SetSystemFontInfo(std::unique_ptr<IFX_SystemFontInfo> pFontInfo); FXFT_Face FindSubstFont(const CFX_ByteString& face_name, - FX_BOOL bTrueType, + bool bTrueType, uint32_t flags, int weight, int italic_angle, |