diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2021-02-04 20:48:46 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-02-05 09:07:55 +0100 |
commit | 34f5057fbea1cfa01356915d0e8edf2296a4149b (patch) | |
tree | 587fa4768025f0330272991acc9f3fbb92478ecc /include | |
parent | b7d2acfe34238e4aa9e71f2a843978576f608c12 (diff) |
pdfium: add remaining FPDF_SCHHANDLE wrappers
So we don't have to expose the raw search handle in the public header
anymore.
Change-Id: I410314424e5a1d3a977c8e3de6f500f7c9a0a332
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110426
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/filter/PDFiumLibrary.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/vcl/filter/PDFiumLibrary.hxx b/include/vcl/filter/PDFiumLibrary.hxx index ab0b5db7e608..807a64cfab4e 100644 --- a/include/vcl/filter/PDFiumLibrary.hxx +++ b/include/vcl/filter/PDFiumLibrary.hxx @@ -162,7 +162,10 @@ public: PDFiumSearchHandle(FPDF_SCHHANDLE pSearchHandle); ~PDFiumSearchHandle(); - FPDF_SCHHANDLE getPointer() { return mpSearchHandle; } + bool findNext(); + bool findPrev(); + int getSearchResultIndex(); + int getSearchCount(); }; class VCL_DLLPUBLIC PDFiumTextPage final |