diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-11-03 15:42:32 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-11-03 15:42:32 -0800 |
commit | 1488aac2e699a5dd31bc59c3d07fe591e2d38c20 (patch) | |
tree | b6e36f95e0e3ed1da249761270467e7390b687cd /core/src/fxge | |
parent | 0142f017d03df17fac98b586487cae23b6be05a6 (diff) | |
download | pdfium-1488aac2e699a5dd31bc59c3d07fe591e2d38c20.tar.xz |
Fix build broken at 0142f017d03d
Missed one mac-only rename.
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/1414693009 .
Diffstat (limited to 'core/src/fxge')
-rw-r--r-- | core/src/fxge/ge/fx_ge_fontmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/fxge/ge/fx_ge_fontmap.cpp b/core/src/fxge/ge/fx_ge_fontmap.cpp index f55d493d83..446744328a 100644 --- a/core/src/fxge/ge/fx_ge_fontmap.cpp +++ b/core/src/fxge/ge/fx_ge_fontmap.cpp @@ -1089,7 +1089,7 @@ FXFT_Face CFX_FontMapper::FindSubstFont(const CFX_ByteString& name, } const uint8_t* pFontData = NULL; FX_DWORD size = 0; - m_pFontMgr->GetStandardFont(pFontData, size, 12); + m_pFontMgr->GetBuiltinFont(12, &pFontData, &size); m_FoxitFaces[12] = m_pFontMgr->GetFixedFace(pFontData, size, 0); return m_FoxitFaces[12]; } |