diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-08-07 22:52:39 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-08-08 09:03:34 +0200 |
commit | 3820aff0a577f72d63446a62f0e614a1408ab114 (patch) | |
tree | 60e62495ad18e577c4f882e623d8d68f7b7fc2f1 /svx | |
parent | b9a739e0d3909e0fa4b76d5c0087d92a505e95fa (diff) |
pdfium: replace FPDFFormObj_CountSubObjects() with backport
Change-Id: Ie7aaf6790c29818236f38b90409860dedecb3cb3
Reviewed-on: https://gerrit.libreoffice.org/58711
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdpdf.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdpdf.cxx b/svx/source/svdraw/svdpdf.cxx index f7797f54fe15..682e6681e950 100644 --- a/svx/source/svdraw/svdpdf.cxx +++ b/svx/source/svdraw/svdpdf.cxx @@ -790,7 +790,7 @@ void ImpSdrPdfImport::ImportForm(FPDF_PAGEOBJECT pPageObject, FPDF_TEXTPAGE pTex FPDFFormObj_GetMatrix(pPageObject, &a, &b, &c, &d, &e, &f); mCurMatrix = Matrix(a, b, c, d, e, f); - const int nCount = FPDFFormObj_CountSubObjects(pPageObject); + const int nCount = FPDFFormObj_CountObjects(pPageObject); for (int nIndex = 0; nIndex < nCount; ++nIndex) { FPDF_PAGEOBJECT pFormObject = FPDFFormObj_GetSubObject(pPageObject, nIndex); |