<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Index: Scribus/scribus/plugins/import/pdf/importpdf.cpp
===================================================================
--- Scribus/scribus/plugins/import/pdf/importpdf.cpp	(revision 26665)
+++ Scribus/scribus/plugins/import/pdf/importpdf.cpp	(revision 26666)
@@ -416,11 +416,11 @@
 
 			if (dev-&gt;isOk())
 			{
-				OCGs* ocg = pdfDoc-&gt;getOptContentConfig();
+				POPPLER_CONST_25_02 OCGs* ocg = pdfDoc-&gt;getOptContentConfig();
 				if (ocg &amp;&amp; ocg-&gt;hasOCGs())
 				{
 					QStringList ocgNames;
-					Array *order = ocg-&gt;getOrderArray();
+					POPPLER_CONST_25_02 Array *order = ocg-&gt;getOrderArray();
 					if (order)
 					{
 						for (int i = 0; i &lt; order-&gt;getLength (); ++i)
Index: Scribus/scribus/plugins/import/pdf/importpdfconfig.h
===================================================================
--- Scribus/scribus/plugins/import/pdf/importpdfconfig.h	(revision 26665)
+++ Scribus/scribus/plugins/import/pdf/importpdfconfig.h	(revision 26666)
@@ -15,4 +15,10 @@
 	+ ((micro) *     1))
 #define POPPLER_ENCODED_VERSION POPPLER_VERSION_ENCODE(POPPLER_VERSION_MAJOR, POPPLER_VERSION_MINOR, POPPLER_VERSION_MICRO)
 
+#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(25, 2, 0)
+#define POPPLER_CONST_25_02 const
+#else
+#define POPPLER_CONST_25_02
 #endif
+
+#endif
Index: Scribus/scribus/plugins/import/pdf/slaoutput.cpp
===================================================================
--- Scribus/scribus/plugins/import/pdf/slaoutput.cpp	(revision 26665)
+++ Scribus/scribus/plugins/import/pdf/slaoutput.cpp	(revision 26666)
@@ -2791,7 +2791,7 @@
 	{
 		if (dictRef-&gt;isNull())
 			return;
-		OCGs *contentConfig = m_catalog-&gt;getOptContentConfig();
+		POPPLER_CONST_25_02 OCGs *contentConfig = m_catalog-&gt;getOptContentConfig();
 		OptionalContentGroup *oc;
 		if (dictRef-&gt;isRef())
 		{
@@ -2928,7 +2928,11 @@
 	SplashFontFile *fontFile;
 	SplashFontSrc *fontsrc = nullptr;
 	Object refObj, strObj;
+#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(25, 2, 0)
+	std::vector&lt;int&gt; codeToGID;
+#else
 	int *codeToGID = nullptr;
+#endif
 	const double *textMat = nullptr;
 	double m11, m12, m21, m22, fontSize;
 	SplashCoord mat[4] = { 1.0, 0.0, 0.0, 1.0 };
@@ -3055,10 +3059,20 @@
 			}
 			else
 			{
+#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(25, 2, 0)
+				codeToGID.clear();
+#else
 				codeToGID = nullptr;
+#endif
 				n = 0;
 			}
-#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(24, 11, 0)
+#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(25, 2, 0)
+			if (!(fontFile = m_fontEngine-&gt;loadTrueTypeFont(std::move(id), fontsrc, std::move(codeToGID), fontLoc-&gt;fontNum)))
+			{
+				error(errSyntaxError, -1, "Couldn't create a font for '{0:s}'", gfxFont-&gt;getName() ? gfxFont-&gt;getName()-&gt;c_str() : "(unnamed)");
+				goto err2;
+			}
+#elif POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(24, 11, 0)
 			if (!(fontFile = m_fontEngine-&gt;loadTrueTypeFont(std::move(id), fontsrc, codeToGID, n, fontLoc-&gt;fontNum)))
 			{
 				error(errSyntaxError, -1, "Couldn't create a font for '{0:s}'", gfxFont-&gt;getName() ? gfxFont-&gt;getName()-&gt;c_str() : "(unnamed)");
@@ -3089,6 +3103,18 @@
 #endif
 			break;
 		case fontCIDType0COT:
+#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(25, 2, 0)
+			if (((GfxCIDFont*) gfxFont)-&gt;getCIDToGIDLen() &gt; 0)
+			{
+				codeToGID = ((GfxCIDFont*) gfxFont)-&gt;getCIDToGID();
+				n = codeToGID.size();
+			}
+			else
+			{
+				codeToGID.clear();
+				n = 0;
+			}
+#else
 			if (((GfxCIDFont *) gfxFont)-&gt;getCIDToGID())
 			{
 				n = ((GfxCIDFont *) gfxFont)-&gt;getCIDToGIDLen();
@@ -3100,7 +3126,15 @@
 				codeToGID = nullptr;
 				n = 0;
 			}
-#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(24, 11, 0)
+#endif
+#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(25, 2, 0)
+			if (!(fontFile = m_fontEngine-&gt;loadOpenTypeCFFFont(std::move(id), fontsrc, std::move(codeToGID), fontLoc-&gt;fontNum)))
+			{
+				error(errSyntaxError, -1, "Couldn't create a font for '{0:s}'",
+					gfxFont-&gt;getName() ? gfxFont-&gt;getName()-&gt;c_str() : "(unnamed)");
+				goto err2;
+			}
+#elif POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(24, 11, 0)
 			if (!(fontFile = m_fontEngine-&gt;loadOpenTypeCFFFont(std::move(id), fontsrc, codeToGID, n, fontLoc-&gt;fontNum)))
 			{
 				error(errSyntaxError, -1, "Couldn't create a font for '{0:s}'",
@@ -3118,6 +3152,15 @@
 			break;
 		case fontCIDType2:
 		case fontCIDType2OT:
+#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(25, 2, 0)
+			codeToGID.clear();
+			n = 0;
+			if (((GfxCIDFont*) gfxFont)-&gt;getCIDToGIDLen() &gt; 0)
+			{
+				codeToGID = ((GfxCIDFont*) gfxFont)-&gt;getCIDToGID();
+				n = codeToGID.size();
+			}
+#else
 			codeToGID = nullptr;
 			n = 0;
 			if (((GfxCIDFont *) gfxFont)-&gt;getCIDToGID())
@@ -3129,6 +3172,7 @@
 					memcpy(codeToGID, ((GfxCIDFont *)gfxFont)-&gt;getCIDToGID(), n * sizeof(*codeToGID));
 				}
 			}
+#endif
 			else
 			{
 #if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(24, 11, 0)
@@ -3144,10 +3188,20 @@
 #endif
 				if (! ff)
 					goto err2;
+#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(25, 2, 0)
+				codeToGID = ((GfxCIDFont*) gfxFont)-&gt;getCodeToGIDMap(ff.get());
+#else
 				codeToGID = ((GfxCIDFont*) gfxFont)-&gt;getCodeToGIDMap(ff.get(), &amp;n);
+#endif
 				ff.reset();
 			}
-#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(24, 11, 0)
+#if POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(25, 2, 0)
+			if (!(fontFile = m_fontEngine-&gt;loadTrueTypeFont(std::move(id), fontsrc, std::move(codeToGID), fontLoc-&gt;fontNum)))
+			{
+				error(errSyntaxError, -1, "Couldn't create a font for '{0:s}'", gfxFont-&gt;getName() ? gfxFont-&gt;getName()-&gt;c_str() : "(unnamed)");
+				goto err2;
+			}
+#elif POPPLER_ENCODED_VERSION &gt;= POPPLER_VERSION_ENCODE(24, 11, 0)
 			if (!(fontFile = m_fontEngine-&gt;loadTrueTypeFont(std::move(id), fontsrc, codeToGID, n, fontLoc-&gt;fontNum)))
 			{
 				error(errSyntaxError, -1, "Couldn't create a font for '{0:s}'", gfxFont-&gt;getName() ? gfxFont-&gt;getName()-&gt;c_str() : "(unnamed)");
</pre></body></html>