diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2021-02-02 21:09:53 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-02-03 09:26:54 +0100 |
commit | 76f878e299796db2bf3f31b2519a87e6ca232609 (patch) | |
tree | 3144f737012e5586e0f960c0f37c3e6b53466727 /include | |
parent | 14d064cee7b76e8a2a2201d4da423336f68fe624 (diff) |
pdfium: add a FPDFText_FindStart() wrapper
Change-Id: I0bf77c116ab83ea557467da7f0c780d92db6a60e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110333
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/filter/PDFiumLibrary.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/filter/PDFiumLibrary.hxx b/include/vcl/filter/PDFiumLibrary.hxx index 418feede99b6..667fa614da70 100644 --- a/include/vcl/filter/PDFiumLibrary.hxx +++ b/include/vcl/filter/PDFiumLibrary.hxx @@ -180,6 +180,8 @@ public: int countChars(); unsigned int getUnicode(int index); + std::unique_ptr<PDFiumSearchHandle> findStart(const OUString& rFindWhat, sal_uInt64 nFlags, + sal_Int32 nStartIndex); }; class VCL_DLLPUBLIC PDFiumPage final |