From 3878e1a206db89f8a9e38c72e7557fab04f96aa5 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Wed, 4 Oct 2017 14:22:18 -0400 Subject: Make CPDF_TransferFunc members private This CL moves the member variables of CPDF_TransferFunc to be private from public and adds accessors as needed. Change-Id: Ib5158721bbe833727b333da794d774f17e4fdea7 Reviewed-on: https://pdfium-review.googlesource.com/15451 Reviewed-by: Henrique Nakashima Commit-Queue: dsinclair --- core/fpdfapi/page/cpdf_generalstate.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'core/fpdfapi/page') diff --git a/core/fpdfapi/page/cpdf_generalstate.cpp b/core/fpdfapi/page/cpdf_generalstate.cpp index 6f4062fb65..845cedd496 100644 --- a/core/fpdfapi/page/cpdf_generalstate.cpp +++ b/core/fpdfapi/page/cpdf_generalstate.cpp @@ -304,17 +304,18 @@ CPDF_GeneralState::StateData::StateData(const StateData& that) m_Matrix = that.m_Matrix; m_SMaskMatrix = that.m_SMaskMatrix; - if (that.m_pTransferFunc && that.m_pTransferFunc->m_pPDFDoc) { + if (that.m_pTransferFunc && that.m_pTransferFunc->GetDocument()) { CPDF_DocRenderData* pDocCache = - that.m_pTransferFunc->m_pPDFDoc->GetRenderData(); + that.m_pTransferFunc->GetDocument()->GetRenderData(); if (pDocCache) m_pTransferFunc = pDocCache->GetTransferFunc(m_pTR.Get()); } } CPDF_GeneralState::StateData::~StateData() { - if (m_pTransferFunc && m_pTransferFunc->m_pPDFDoc) { - CPDF_DocRenderData* pDocCache = m_pTransferFunc->m_pPDFDoc->GetRenderData(); + if (m_pTransferFunc && m_pTransferFunc->GetDocument()) { + CPDF_DocRenderData* pDocCache = + m_pTransferFunc->GetDocument()->GetRenderData(); if (pDocCache) { m_pTransferFunc.Reset(); // Give up our reference first. pDocCache->MaybePurgeTransferFunc(m_pTR.Get()); -- cgit v1.2.3