Index: src_plugins/export_png/export_png.c =================================================================== --- src_plugins/export_png/export_png.c (revision 622) +++ src_plugins/export_png/export_png.c (revision 623) @@ -107,7 +107,7 @@ static rnd_hid_attr_val_t png_values[NUM_OPTIONS]; -static const rnd_export_opt_t *png_get_export_options(rnd_hid_t *hid, int *n) +static const rnd_export_opt_t *png_get_export_options(rnd_hid_t *hid, int *n, rnd_design_t *dsg, void *appspec) { if (n) *n = NUM_OPTIONS; @@ -168,7 +168,7 @@ rnd_drwpx_init(pctx, hl); if (!options) { - png_get_export_options(hid, 0); + png_get_export_options(hid, 0, design, appspec); options = png_values; } Index: src_plugins/export_ps/eps.c =================================================================== --- src_plugins/export_ps/eps.c (revision 622) +++ src_plugins/export_ps/eps.c (revision 623) @@ -85,7 +85,7 @@ static rnd_hid_attr_val_t eps_values[NUM_OPTIONS]; -static const rnd_export_opt_t *eps_get_export_options(rnd_hid_t *hid, int *n) +static const rnd_export_opt_t *eps_get_export_options(rnd_hid_t *hid, int *n, rnd_design_t *dsg, void *appspec) { if (n) *n = NUM_OPTIONS; @@ -133,7 +133,7 @@ rnd_xform_t xform = {0}; if (!options) { - eps_get_export_options(hid, 0); + eps_get_export_options(hid, 0, design, appspec); options = eps_values; } Index: src_plugins/export_ps/ps.c =================================================================== --- src_plugins/export_ps/ps.c (revision 622) +++ src_plugins/export_ps/ps.c (revision 623) @@ -163,7 +163,7 @@ int had_page; /* 1 if we ever wrote a page */ } global; -static const rnd_export_opt_t *ps_get_export_options(rnd_hid_t *hid, int *n) +static const rnd_export_opt_t *ps_get_export_options(rnd_hid_t *hid, int *n, rnd_design_t *dsg, void *appspec) { if (n) *n = NUM_OPTIONS; @@ -254,7 +254,7 @@ global.ovr_all = 0; if (!options) { - ps_get_export_options(hid, 0); + ps_get_export_options(hid, 0, design, appspec); options = global.ps_values; } Index: src_plugins/export_svg/export_svg.c =================================================================== --- src_plugins/export_svg/export_svg.c (revision 622) +++ src_plugins/export_svg/export_svg.c (revision 623) @@ -88,7 +88,7 @@ static char *out_filename; -static const rnd_export_opt_t *svg_get_export_options(rnd_hid_t *hid, int *n) +static const rnd_export_opt_t *svg_get_export_options(rnd_hid_t *hid, int *n, rnd_design_t *dsg, void *appspec) { if (n) *n = NUM_OPTIONS; @@ -124,7 +124,7 @@ pctx->comp_cnt = 0; if (!options) { - svg_get_export_options(hid, 0); + svg_get_export_options(hid, 0, design, appspec); options = svg_values; }