diff options
author | Lei Zhang <thestig@chromium.org> | 2018-08-27 18:57:36 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-27 18:57:36 +0000 |
commit | 76525c4a9d2aa6d1f2685d8483e3d491fd361df1 (patch) | |
tree | d2c389924eaaebd1f8df7d78fd50a0e3fcf76ac2 /fxjs | |
parent | 2e6d2b5ca1637242794bf13ad980317d39dd7790 (diff) | |
download | pdfium-76525c4a9d2aa6d1f2685d8483e3d491fd361df1.tar.xz |
Remove unnecessary ToArray() calls and locals in CPDF_Dest.chromium/3535
Rename GetObject() to GetArray() and remove more ToArray() calls.
Change-Id: I754ca72b32c085e1801d3cedcd291ce4d2682359
Reviewed-on: https://pdfium-review.googlesource.com/41353
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs')
-rw-r--r-- | fxjs/cjs_document.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjs/cjs_document.cpp b/fxjs/cjs_document.cpp index 486da1159c..c839e9f487 100644 --- a/fxjs/cjs_document.cpp +++ b/fxjs/cjs_document.cpp @@ -1458,7 +1458,7 @@ CJS_Result CJS_Document::gotoNamedDest( return CJS_Result::Failure(JSMessage::kBadObjectError); CPDF_Dest dest(destArray); - const CPDF_Array* arrayObject = ToArray(dest.GetObject()); + const CPDF_Array* arrayObject = dest.GetArray(); std::vector<float> scrollPositionArray; if (arrayObject) { for (size_t i = 2; i < arrayObject->GetCount(); i++) |