--- a/scribus/plugins/import/pdf/slaoutput.cpp +++ b/scribus/plugins/import/pdf/slaoutput.cpp @@ -3741,9 +3741,16 @@ void SlaOutputDev::getPenState(GfxState *state) 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 &dash = state->getLineDash(&DashOffset); + dashPattern = dash.data(); + dashLength = dash.size(); +#else + double *dashPattern; state->getLineDash(&dashPattern, &dashLength, &DashOffset); +#endif QVector pattern(dashLength); for (int i = 0; i < dashLength; ++i) { t();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-05-20The #guix channel is hosted by Libera Chat....* README (Contact): Update network name. * ROADMAP: Likewise. * doc/contributing.texi (Contributing): Likewise. * doc/guix.texi (After System Installation): Likewise. Tobias Geerinckx-Rice