Index: xfa/fgas/font/fgas_gefont.cpp |
diff --git a/xfa/fgas/font/fgas_gefont.cpp b/xfa/fgas/font/fgas_gefont.cpp |
index 803bede6e5942639f55941410d1b4cb5e647d827..5432e527d26ae39cb3b6b033920d58b0097d3c5f 100644 |
--- a/xfa/fgas/font/fgas_gefont.cpp |
+++ b/xfa/fgas/font/fgas_gefont.cpp |
@@ -494,11 +494,11 @@ int32_t CFX_GEFont::GetGlyphIndex(FX_WCHAR wUnicode, |
CFX_WideString wsFamily; |
GetFamilyName(wsFamily); |
#if _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ |
- IFX_Font* pFont = m_pFontMgr->GetDefFontByUnicode(wUnicode, GetFontStyles(), |
- wsFamily.c_str()); |
+ pFont = m_pFontMgr->GetDefFontByUnicode(wUnicode, GetFontStyles(), |
+ wsFamily.c_str()); |
#else |
- IFX_Font* pFont = m_pFontMgr->GetFontByUnicode(wUnicode, GetFontStyles(), |
- wsFamily.c_str()); |
+ pFont = m_pFontMgr->GetFontByUnicode(wUnicode, GetFontStyles(), |
+ wsFamily.c_str()); |
if (!pFont) |
pFont = m_pFontMgr->GetFontByUnicode(wUnicode, GetFontStyles(), NULL); |
#endif |