| Index: xfa/fgas/font/cfgas_gefont.cpp
|
| diff --git a/xfa/fgas/font/cfgas_gefont.cpp b/xfa/fgas/font/cfgas_gefont.cpp
|
| index c1dfa2b5b9c6ceb05d9dcc3c1904c8a96a892bcb..1d4624fb0da609fc832401c1c63920cc3147f96a 100644
|
| --- a/xfa/fgas/font/cfgas_gefont.cpp
|
| +++ b/xfa/fgas/font/cfgas_gefont.cpp
|
| @@ -72,7 +72,7 @@ CFGAS_GEFont* CFGAS_GEFont::LoadFont(const uint8_t* pBuffer,
|
| }
|
|
|
| // static
|
| -CFGAS_GEFont* CFGAS_GEFont::LoadFont(IFX_Stream* pFontStream,
|
| +CFGAS_GEFont* CFGAS_GEFont::LoadFont(IFGAS_Stream* pFontStream,
|
| CFGAS_FontMgr* pFontMgr,
|
| bool bSaveStream) {
|
| CFGAS_GEFont* pFont = new CFGAS_GEFont(pFontMgr);
|
| @@ -203,7 +203,8 @@ bool CFGAS_GEFont::LoadFontInternal(const uint8_t* pBuffer, int32_t length) {
|
| return InitFont();
|
| }
|
|
|
| -bool CFGAS_GEFont::LoadFontInternal(IFX_Stream* pFontStream, bool bSaveStream) {
|
| +bool CFGAS_GEFont::LoadFontInternal(IFGAS_Stream* pFontStream,
|
| + bool bSaveStream) {
|
| if (m_pFont || m_pFileRead || !pFontStream || pFontStream->GetLength() < 1)
|
| return false;
|
| if (bSaveStream)
|
|
|