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_tounicodemap.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_tounicodemap.cpp')
-rw-r--r-- | core/fpdfapi/font/cpdf_tounicodemap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/font/cpdf_tounicodemap.cpp b/core/fpdfapi/font/cpdf_tounicodemap.cpp index e8917310a2..5362e48e10 100644 --- a/core/fpdfapi/font/cpdf_tounicodemap.cpp +++ b/core/fpdfapi/font/cpdf_tounicodemap.cpp @@ -227,7 +227,7 @@ void CPDF_ToUnicodeMap::Load(const CPDF_Stream* pStream) { ->GetPageModule() ->GetFontGlobals() ->GetCMapManager() - ->GetCID2UnicodeMap(cid_set, false); + ->GetCID2UnicodeMap(cid_set); } else { m_pBaseMap = nullptr; } |