diff options
author | Nicolas Pena <npm@chromium.org> | 2017-11-07 16:32:20 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-07 16:32:20 +0000 |
commit | 979e916fde750e47f262c59dc75f4ca2dc19ed39 (patch) | |
tree | 5e767486014c58e384f827f3fd7dc11efe658865 /core/fxge/cfx_font.cpp | |
parent | f2f12b32b601f022b5c10fddd8c4d19d00072630 (diff) | |
download | pdfium-979e916fde750e47f262c59dc75f4ca2dc19ed39.tar.xz |
Remove m_bFlagExact from CFX_SubstFont
This CL removes the single use case from |m_bFlagExact|. This flag
allows the PDF viewer to treat a substitute font with a matching name as
if it was actually an embedded font, which is wrong. For all substitute
fonts, it is important to follow the longer process of first obtaining
the unicode from the charcode to then obtain the glyph in the substitute
font that corresponds to that unicode.
Bug: chromium:781785
Change-Id: Ie5958b43914e0e46334b89b7c2c55c02d0da0c11
Reviewed-on: https://pdfium-review.googlesource.com/17859
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Diffstat (limited to 'core/fxge/cfx_font.cpp')
-rw-r--r-- | core/fxge/cfx_font.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/fxge/cfx_font.cpp b/core/fxge/cfx_font.cpp index da6b0e0fe3..3f4f1356f8 100644 --- a/core/fxge/cfx_font.cpp +++ b/core/fxge/cfx_font.cpp @@ -237,7 +237,6 @@ bool CFX_Font::LoadClone(const CFX_Font* pFont) { m_pSubstFont = pdfium::MakeUnique<CFX_SubstFont>(); m_pSubstFont->m_Charset = pFont->m_pSubstFont->m_Charset; m_pSubstFont->m_bFlagMM = pFont->m_pSubstFont->m_bFlagMM; - m_pSubstFont->m_bFlagExact = pFont->m_pSubstFont->m_bFlagExact; #ifdef PDF_ENABLE_XFA m_pSubstFont->m_bFlagItalic = pFont->m_pSubstFont->m_bFlagItalic; #endif // PDF_ENABLE_XFA |