diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/pdf/PDFiumLibrary.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/source/pdf/PDFiumLibrary.cxx b/vcl/source/pdf/PDFiumLibrary.cxx index 232ed10cb9b6..617ea16cb6eb 100644 --- a/vcl/source/pdf/PDFiumLibrary.cxx +++ b/vcl/source/pdf/PDFiumLibrary.cxx @@ -1307,6 +1307,12 @@ int PDFiumSearchHandleImpl::getSearchResultIndex() int PDFiumSearchHandleImpl::getSearchCount() { return FPDFText_GetSchCount(mpSearchHandle); } +std::shared_ptr<PDFium>& PDFiumLibrary::get() +{ + static auto pInstance = std::make_shared<PDFium>(); + return pInstance; +} + } // end vcl::pdf #endif // HAVE_FEATURE_PDFIUM |