fix: compile with poppler >= 22.03

- use c++17 (even required for poppler 22.01)
- handle API change
preferencesAboutTextFull
letsfindaway 2 years ago
parent 4218f70158
commit 2aee390105
  1. 2
      src/pdf/XPDFRenderer.cpp
  2. 1
      src/pdf/pdf.pri

@ -95,6 +95,8 @@ XPDFRenderer::XPDFRenderer(const QString &filename, bool importingFile)
}
#ifdef USE_XPDF
mDocument = new PDFDoc(new GString(filename.toLocal8Bit()), 0, 0, 0); // the filename GString is deleted on PDFDoc desctruction
#elif POPPLER_VERSION_MAJOR > 22 || (POPPLER_VERSION_MAJOR == 22 && POPPLER_VERSION_MINOR >= 3)
mDocument = new PDFDoc(std::make_unique<GooString>(filename.toLocal8Bit()));
#else
mDocument = new PDFDoc(new GooString(filename.toLocal8Bit()), 0, 0, 0); // the filename GString is deleted on PDFDoc desctruction
#endif

@ -1,3 +1,4 @@
CONFIG += c++17
HEADERS += src/pdf/GraphicsPDFItem.h \
src/pdf/PDFRenderer.h \

Loading…
Cancel
Save