From 61ac4708889db7bbcc978c88f4a8195e946df8eb Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Sun, 15 Mar 2020 13:14:34 +0000 Subject: [PATCH] [PATCH] Fix build with poppler 0.86.0. https://bugs.documentfoundation.org/show_bug.cgi?id=131353 Gbp-Pq: Name poppler-0.86.diff --- sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx index e9c2a407c27..16ad04bf660 100644 --- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx +++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx @@ -563,7 +563,9 @@ void PDFOutDev::processLink(Link* link, Catalog*) if (!(pAction && pAction->getKind() == actionURI)) return; -#if POPPLER_CHECK_VERSION(0, 72, 0) +#if POPPLER_CHECK_VERSION(0, 86, 0) + const char* pURI = static_cast(pAction)->getURI().c_str(); +#elif POPPLER_CHECK_VERSION(0, 72, 0) const char* pURI = static_cast(pAction)->getURI()->c_str(); #else const char* pURI = static_cast(pAction)->getURI()->getCString(); -- 2.30.2