From 38fd84428a1ea007a043be0b7d9b289e47aa5da0 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Thu, 15 Sep 2016 10:15:32 -0700 Subject: Rename dictionary set and get methods This Cl makes the Get and Set methods consistenly use {G|S}etFor. BUG=pdfium:596 Review-Url: https://codereview.chromium.org/2334323005 --- core/fpdftext/cpdf_textpage.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/fpdftext') diff --git a/core/fpdftext/cpdf_textpage.cpp b/core/fpdftext/cpdf_textpage.cpp index cb60c452bf..c691d4b3a0 100644 --- a/core/fpdftext/cpdf_textpage.cpp +++ b/core/fpdftext/cpdf_textpage.cpp @@ -822,7 +822,7 @@ FPDFText_MarkedContent CPDF_TextPage::PreMarkedContent(PDFTEXT_Obj Obj) { continue; pDict = item.GetParam(); CPDF_String* temp = - ToString(pDict ? pDict->GetObjectBy("ActualText") : nullptr); + ToString(pDict ? pDict->GetObjectFor("ActualText") : nullptr); if (temp) { bExist = true; actText = temp->GetUnicodeText(); @@ -884,7 +884,7 @@ void CPDF_TextPage::ProcessMarkedContent(PDFTEXT_Obj Obj) { continue; pDict = item.GetParam(); if (pDict) - actText = pDict->GetUnicodeTextBy("ActualText"); + actText = pDict->GetUnicodeTextFor("ActualText"); } FX_STRSIZE nItems = actText.GetLength(); if (nItems < 1) -- cgit v1.2.3