diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-08-23 17:57:39 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-23 17:57:39 +0000 |
commit | 18342f5d7c80528ffe85a5c89a48d3bbd93fb6bd (patch) | |
tree | 781c3b7c083675946751af40daf962b338fba94a /core/fpdfapi/font/cpdf_cid2unicodemap.cpp | |
parent | 7aa4bc461a171cc2b5a27490a55f0baedd6623fb (diff) | |
download | pdfium-18342f5d7c80528ffe85a5c89a48d3bbd93fb6bd.tar.xz |
Remove bool bPromptCJK argument (several places)
It gets computed, and passed around, but in the end no decisions
are made because of it.
Change-Id: If67f6f0cd0c37e52993832be1fb83498fd851914
Reviewed-on: https://pdfium-review.googlesource.com/41190
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfapi/font/cpdf_cid2unicodemap.cpp')
-rw-r--r-- | core/fpdfapi/font/cpdf_cid2unicodemap.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/core/fpdfapi/font/cpdf_cid2unicodemap.cpp b/core/fpdfapi/font/cpdf_cid2unicodemap.cpp index b2e435b5f1..f36834df96 100644 --- a/core/fpdfapi/font/cpdf_cid2unicodemap.cpp +++ b/core/fpdfapi/font/cpdf_cid2unicodemap.cpp @@ -28,13 +28,10 @@ wchar_t CPDF_CID2UnicodeMap::UnicodeFromCID(uint16_t CID) const { return 0; } -void CPDF_CID2UnicodeMap::Load(CPDF_CMapManager* pMgr, - CIDSet charset, - bool bPromptCJK) { +void CPDF_CID2UnicodeMap::Load(CPDF_CMapManager* pMgr, CIDSet charset) { m_Charset = charset; CPDF_FontGlobals* pFontGlobals = CPDF_ModuleMgr::Get()->GetPageModule()->GetFontGlobals(); - m_pEmbeddedMap = pFontGlobals->GetEmbeddedToUnicode(charset); } |