23 lines
828 B
Diff
23 lines
828 B
Diff
Index: scribus-1.5.8/scribus/plugins/import/pdf/slaoutput.cpp
|
|
===================================================================
|
|
--- scribus-1.5.8.orig/scribus/plugins/import/pdf/slaoutput.cpp
|
|
+++ scribus-1.5.8/scribus/plugins/import/pdf/slaoutput.cpp
|
|
@@ -3741,9 +3741,16 @@ void SlaOutputDev::getPenState(GfxState
|
|
break;
|
|
}
|
|
double lw = state->getLineWidth();
|
|
- double *dashPattern;
|
|
int dashLength;
|
|
+#if POPPLER_ENCODED_VERSION >= POPPLER_VERSION_ENCODE(22, 9, 0)
|
|
+ const double *dashPattern;
|
|
+ const std::vector<double> &dash = state->getLineDash(&DashOffset);
|
|
+ dashPattern = dash.data();
|
|
+ dashLength = dash.size();
|
|
+#else
|
|
+ double *dashPattern;
|
|
state->getLineDash(&dashPattern, &dashLength, &DashOffset);
|
|
+#endif
|
|
QVector<double> pattern(dashLength);
|
|
for (int i = 0; i < dashLength; ++i)
|
|
{
|