| Index: xfa/fxfa/app/xfa_fontmgr.cpp
|
| diff --git a/xfa/fxfa/app/xfa_fontmgr.cpp b/xfa/fxfa/app/xfa_fontmgr.cpp
|
| index 589dcd42f26e14427526b9b7c146f297b0ec87ba..ddac27d533e61624bf98de933e9bb1e86b8e4f62 100644
|
| --- a/xfa/fxfa/app/xfa_fontmgr.cpp
|
| +++ b/xfa/fxfa/app/xfa_fontmgr.cpp
|
| @@ -1749,7 +1749,7 @@ CFGAS_GEFont* CXFA_DefFontMgr::GetFont(CXFA_FFDoc* hDoc,
|
| uint32_t dwFontStyles,
|
| uint16_t wCodePage) {
|
| CFX_WideString wsFontName(wsFontFamily);
|
| - IFGAS_FontMgr* pFDEFontMgr = hDoc->GetApp()->GetFDEFontMgr();
|
| + CFGAS_FontMgr* pFDEFontMgr = hDoc->GetApp()->GetFDEFontMgr();
|
| CFGAS_GEFont* pFont =
|
| pFDEFontMgr->LoadFont(wsFontName.c_str(), dwFontStyles, wCodePage);
|
| if (!pFont) {
|
| @@ -1793,7 +1793,7 @@ CFGAS_GEFont* CXFA_DefFontMgr::GetDefaultFont(
|
| const CFX_WideStringC& wsFontFamily,
|
| uint32_t dwFontStyles,
|
| uint16_t wCodePage) {
|
| - IFGAS_FontMgr* pFDEFontMgr = hDoc->GetApp()->GetFDEFontMgr();
|
| + CFGAS_FontMgr* pFDEFontMgr = hDoc->GetApp()->GetFDEFontMgr();
|
| CFGAS_GEFont* pFont =
|
| pFDEFontMgr->LoadFont(L"Arial Narrow", dwFontStyles, wCodePage);
|
| if (!pFont) {
|
| @@ -1836,7 +1836,7 @@ CFGAS_GEFont* CXFA_PDFFontMgr::FindFont(const CFX_ByteString& strPsName,
|
| }
|
| CFX_ByteString name = strPsName;
|
| name.Remove(' ');
|
| - IFGAS_FontMgr* pFDEFontMgr = m_pDoc->GetApp()->GetFDEFontMgr();
|
| + CFGAS_FontMgr* pFDEFontMgr = m_pDoc->GetApp()->GetFDEFontMgr();
|
| for (const auto& it : *pFontSetDict) {
|
| const CFX_ByteString& key = it.first;
|
| CPDF_Object* pObj = it.second;
|
|
|