From 37a867d85a28d186dbf24549e8cbf49b0f4ed3c0 Mon Sep 17 00:00:00 2001 From: Jehan Date: Sun, 23 Jul 2023 23:21:04 +0200 Subject: [PATCH] plug-ins: port file-farbfeld to new gimp_save_procedure_new(). This was not forgotten, simply this is a new plug-in which got into the tree after a rebase. ;-) --- plug-ins/common/file-farbfeld.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/plug-ins/common/file-farbfeld.c b/plug-ins/common/file-farbfeld.c index b548af7066..205c429f49 100644 --- a/plug-ins/common/file-farbfeld.c +++ b/plug-ins/common/file-farbfeld.c @@ -74,7 +74,8 @@ static GimpValueArray * farbfeld_save (GimpProcedure *procedu gint n_drawables, GimpDrawable **drawables, GFile *file, - const GimpValueArray *args, + GimpMetadata *metadata, + GimpProcedureConfig *config, gpointer run_data); static GimpImage * load_image (GFile *file, @@ -154,7 +155,7 @@ farbfeld_create_procedure (GimpPlugIn *plug_in, { procedure = gimp_save_procedure_new (plug_in, name, GIMP_PDB_PROC_TYPE_PLUGIN, - farbfeld_save, NULL, NULL); + FALSE, farbfeld_save, NULL, NULL); gimp_procedure_set_image_types (procedure, "*"); @@ -221,7 +222,8 @@ farbfeld_save (GimpProcedure *procedure, gint n_drawables, GimpDrawable **drawables, GFile *file, - const GimpValueArray *args, + GimpMetadata *metadata, + GimpProcedureConfig *config, gpointer run_data) { GimpPDBStatusType status = GIMP_PDB_SUCCESS;