diff options
author | Lei Zhang <thestig@chromium.org> | 2018-05-07 23:28:36 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-07 23:28:36 +0000 |
commit | 4c31a13a704850fdf301fb561ba966baa3c7c29c (patch) | |
tree | 6d7a7d667008b673d0ccb8047392956b9e8cb32d /core/fpdfapi/page/cpdf_contentparser.cpp | |
parent | 0cc77c9ef74f527a6887d9a2e8ebcb6412615f30 (diff) | |
download | pdfium-4c31a13a704850fdf301fb561ba966baa3c7c29c.tar.xz |
Make CPDF_PageObjectHolder::m_iTransparency protected.
Also initialize members in the header.
Change-Id: Id814c4c5042c9d4989fa92b78f68c17f4949f09d
Reviewed-on: https://pdfium-review.googlesource.com/32111
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fpdfapi/page/cpdf_contentparser.cpp')
-rw-r--r-- | core/fpdfapi/page/cpdf_contentparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/page/cpdf_contentparser.cpp b/core/fpdfapi/page/cpdf_contentparser.cpp index 08923f38b6..0b11da5554 100644 --- a/core/fpdfapi/page/cpdf_contentparser.cpp +++ b/core/fpdfapi/page/cpdf_contentparser.cpp @@ -93,7 +93,7 @@ CPDF_ContentParser::CPDF_ContentParser(CPDF_Form* pForm, m_pParser->GetCurStates()->m_ClipPath.AppendPath(ClipPath, FXFILL_WINDING, true); } - if (pForm->m_iTransparency & PDFTRANS_GROUP) { + if (pForm->GetTransparency() & PDFTRANS_GROUP) { CPDF_GeneralState* pState = &m_pParser->GetCurStates()->m_GeneralState; pState->SetBlendType(FXDIB_BLEND_NORMAL); pState->SetStrokeAlpha(1.0f); |