| Index: core/src/fxge/ge/fx_ge_fontmap.cpp
|
| diff --git a/core/src/fxge/ge/fx_ge_fontmap.cpp b/core/src/fxge/ge/fx_ge_fontmap.cpp
|
| index 6b0d7bf7e80094935f9d0399b0c3fc2578136ad4..73f89c4c05bd0f3b12cc4918db62ef2ef30e7cc1 100644
|
| --- a/core/src/fxge/ge/fx_ge_fontmap.cpp
|
| +++ b/core/src/fxge/ge/fx_ge_fontmap.cpp
|
| @@ -1087,7 +1087,7 @@ FXFT_Face CFX_FontMapper::FindSubstFont(const CFX_ByteString& name,
|
| if (flags & FXFONT_EXACTMATCH) {
|
| return NULL;
|
| }
|
| -#endif
|
| +#endif // PDF_ENABLE_XFA
|
| if (bCJK) {
|
| if (italic_angle != 0) {
|
| bItalic = TRUE;
|
| @@ -1296,7 +1296,8 @@ FX_BOOL CFX_FontMapper::IsBuiltinFace(const FXFT_Face face) const {
|
| }
|
| return FALSE;
|
| }
|
| -#endif
|
| +#endif // PDF_ENABLE_XFA
|
| +
|
| extern "C" {
|
| unsigned long _FTStreamRead(FXFT_Stream stream,
|
| unsigned long offset,
|
| @@ -1518,6 +1519,7 @@ void* CFX_FolderFontInfo::MapFont(int weight,
|
| int& iExact) {
|
| return NULL;
|
| }
|
| +
|
| #ifdef PDF_ENABLE_XFA
|
| void* CFX_FolderFontInfo::MapFontByUnicode(FX_DWORD dwUnicode,
|
| int weight,
|
| @@ -1525,7 +1527,8 @@ void* CFX_FolderFontInfo::MapFontByUnicode(FX_DWORD dwUnicode,
|
| int pitch_family) {
|
| return NULL;
|
| }
|
| -#endif
|
| +#endif // PDF_ENABLE_XFA
|
| +
|
| void* CFX_FolderFontInfo::GetFont(const FX_CHAR* face) {
|
| auto it = m_FontList.find(face);
|
| return it != m_FontList.end() ? it->second : nullptr;
|
|
|