diff options
author | Lei Zhang <thestig@chromium.org> | 2018-05-25 21:17:49 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-25 21:17:49 +0000 |
commit | 0d86f765b8361b7f9f3a5fcc659de2f52c806bd0 (patch) | |
tree | 5f59c428d1bed3269292625d7e26ab4462510b85 /core/fpdfapi/font/cpdf_font.cpp | |
parent | 2d3a78547ae2a0c084dc312ca4b3e03ff3427a9f (diff) | |
download | pdfium-0d86f765b8361b7f9f3a5fcc659de2f52c806bd0.tar.xz |
Add proper const/non-const versions of CPDF_Dictionary::GetStreamFor().chromium/3441
BUG=pdfium:234
Change-Id: Ia3e758bbe5c445c3856f5215e900e02a16b4d7d7
Reviewed-on: https://pdfium-review.googlesource.com/32910
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fpdfapi/font/cpdf_font.cpp')
-rw-r--r-- | core/fpdfapi/font/cpdf_font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/font/cpdf_font.cpp b/core/fpdfapi/font/cpdf_font.cpp index 2201e390ff..35fed75c87 100644 --- a/core/fpdfapi/font/cpdf_font.cpp +++ b/core/fpdfapi/font/cpdf_font.cpp @@ -277,7 +277,7 @@ void CPDF_Font::CheckFontMetrics() { void CPDF_Font::LoadUnicodeMap() const { m_bToUnicodeLoaded = true; - CPDF_Stream* pStream = m_pFontDict->GetStreamFor("ToUnicode"); + const CPDF_Stream* pStream = m_pFontDict->GetStreamFor("ToUnicode"); if (!pStream) return; |