From 649bc02a2e2ab886733d7461ece89b4153a01d5f Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Sat, 15 Sep 2018 04:31:10 +0000 Subject: Remove FXFM_ENCODING_NONE. FX_CreateFontEncodingEx() always passes FXFM_ENCODING_NONE. Just get rid of it instead. Change-Id: I417f84d8ae2f10ba874265a92576d3ef8481a9d6 Reviewed-on: https://pdfium-review.googlesource.com/42460 Reviewed-by: Tom Sepez Commit-Queue: Lei Zhang --- core/fxge/cfx_unicodeencoding.h | 1 - core/fxge/cfx_unicodeencodingex.cpp | 6 +----- core/fxge/cfx_unicodeencodingex.h | 4 +--- 3 files changed, 2 insertions(+), 9 deletions(-) (limited to 'core/fxge') diff --git a/core/fxge/cfx_unicodeencoding.h b/core/fxge/cfx_unicodeencoding.h index 57848c1267..338bfba413 100644 --- a/core/fxge/cfx_unicodeencoding.h +++ b/core/fxge/cfx_unicodeencoding.h @@ -15,7 +15,6 @@ #define FXFM_ENC_TAG(a, b, c, d) \ (((uint32_t)(a) << 24) | ((uint32_t)(b) << 16) | ((uint32_t)(c) << 8) | \ (uint32_t)(d)) -#define FXFM_ENCODING_NONE FXFM_ENC_TAG(0, 0, 0, 0) #define FXFM_ENCODING_MS_SYMBOL FXFM_ENC_TAG('s', 'y', 'm', 'b') #define FXFM_ENCODING_UNICODE FXFM_ENC_TAG('u', 'n', 'i', 'c') #define FXFM_ENCODING_MS_SJIS FXFM_ENC_TAG('s', 'j', 'i', 's') diff --git a/core/fxge/cfx_unicodeencodingex.cpp b/core/fxge/cfx_unicodeencodingex.cpp index a8db745612..2f5eaf7aa8 100644 --- a/core/fxge/cfx_unicodeencodingex.cpp +++ b/core/fxge/cfx_unicodeencodingex.cpp @@ -85,14 +85,10 @@ uint32_t CFX_UnicodeEncodingEx::CharCodeFromUnicode(wchar_t Unicode) const { } std::unique_ptr FX_CreateFontEncodingEx( - CFX_Font* pFont, - uint32_t nEncodingID) { + CFX_Font* pFont) { if (!pFont || !pFont->GetFace()) return nullptr; - if (nEncodingID != FXFM_ENCODING_NONE) - return FXFM_CreateFontEncoding(pFont, nEncodingID); - for (uint32_t id : g_EncodingID) { auto pFontEncoding = FXFM_CreateFontEncoding(pFont, id); if (pFontEncoding) diff --git a/core/fxge/cfx_unicodeencodingex.h b/core/fxge/cfx_unicodeencodingex.h index d9d349a88b..9511d2ba7a 100644 --- a/core/fxge/cfx_unicodeencodingex.h +++ b/core/fxge/cfx_unicodeencodingex.h @@ -29,8 +29,6 @@ class CFX_UnicodeEncodingEx final : public CFX_UnicodeEncoding { uint32_t m_nEncodingID; }; -std::unique_ptr FX_CreateFontEncodingEx( - CFX_Font* pFont, - uint32_t nEncodingID); +std::unique_ptr FX_CreateFontEncodingEx(CFX_Font* pFont); #endif // CORE_FXGE_CFX_UNICODEENCODINGEX_H_ -- cgit v1.2.3