diff options
author | Lei Zhang <thestig@chromium.org> | 2017-11-02 19:50:58 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-02 19:50:58 +0000 |
commit | f1be1e87045da36b52326fb269f7006670c0c9ab (patch) | |
tree | 629877b8d7bf46132e2f04ca655fe1cfcc1fc42a /fpdfsdk/fpdfeditpage.cpp | |
parent | eda1761e6a90058a97cee1bcd763a2447eb6a67b (diff) | |
download | pdfium-f1be1e87045da36b52326fb269f7006670c0c9ab.tar.xz |
Rename Transparency to iTransparency.
Fix a mismatched parameter name in cpdf_renderstatus.h too.
Change-Id: I9765838e6ab93db37791fc282e553b6cb9c51ec5
Reviewed-on: https://pdfium-review.googlesource.com/17050
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fpdfsdk/fpdfeditpage.cpp')
-rw-r--r-- | fpdfsdk/fpdfeditpage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/fpdfeditpage.cpp b/fpdfsdk/fpdfeditpage.cpp index a1f2f396a5..db726b74f0 100644 --- a/fpdfsdk/fpdfeditpage.cpp +++ b/fpdfsdk/fpdfeditpage.cpp @@ -235,7 +235,7 @@ FPDFPageObj_HasTransparency(FPDF_PAGEOBJECT pageObject) { if (pPageObj->IsForm()) { const CPDF_Form* pForm = pPageObj->AsForm()->form(); if (pForm) { - int trans = pForm->m_Transparency; + int trans = pForm->m_iTransparency; if ((trans & PDFTRANS_ISOLATED) || (trans & PDFTRANS_GROUP)) return true; } |