diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-05-08 13:40:20 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-08 13:40:20 +0000 |
commit | 967aa0793c0b0cf2722ec8720e9d797266a9fde7 (patch) | |
tree | 46c32ab1adcadd770261093d6bb57e2e1886bf32 /fxjs | |
parent | e5c0fa97c2da104426dbc1cecfc0ed488a22efe5 (diff) | |
download | pdfium-967aa0793c0b0cf2722ec8720e9d797266a9fde7.tar.xz |
Rename CPDF_Document::GetPage() to GetPageDictionary().
Avoids a conflict should we wish to have the document actually
track pages, with a GetPage() that returns CPDF_Page.
Do the same thing to CPDF_DataAvail along the way.
Add some missing consts as well.
Change-Id: I2cb2213cc4c0649662fceab80407ee4a3f4cf30e
Reviewed-on: https://pdfium-review.googlesource.com/32158
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs')
-rw-r--r-- | fxjs/cjs_document.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fxjs/cjs_document.cpp b/fxjs/cjs_document.cpp index 07701902ea..de3c93c0cb 100644 --- a/fxjs/cjs_document.cpp +++ b/fxjs/cjs_document.cpp @@ -1251,7 +1251,7 @@ CJS_Return CJS_Document::getPageNthWord( if (nPageNo < 0 || nPageNo >= pDocument->GetPageCount()) return CJS_Return(JSGetStringFromID(JSMessage::kValueError)); - CPDF_Dictionary* pPageDict = pDocument->GetPage(nPageNo); + CPDF_Dictionary* pPageDict = pDocument->GetPageDictionary(nPageNo); if (!pPageDict) return CJS_Return(false); @@ -1300,7 +1300,7 @@ CJS_Return CJS_Document::getPageNumWords( if (nPageNo < 0 || nPageNo >= pDocument->GetPageCount()) return CJS_Return(JSGetStringFromID(JSMessage::kValueError)); - CPDF_Dictionary* pPageDict = pDocument->GetPage(nPageNo); + CPDF_Dictionary* pPageDict = pDocument->GetPageDictionary(nPageNo); if (!pPageDict) return CJS_Return(false); |