[gimp] plug-ins: fix PDB data identifier to be canonical.



commit c109a35c25e5023710a9c6dbefb16c71d0e4e732
Author: Jehan <jehan girinstud io>
Date:   Tue Oct 27 12:24:00 2020 +0100

    plug-ins: fix PDB data identifier to be canonical.
    
    This is the bug which triggered me to do previous commit because the
    error message was talking about a procedure name. Now the error message
    is right, but let's not have an error at all! ;-)

 plug-ins/fractal-explorer/fractal-explorer.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/plug-ins/fractal-explorer/fractal-explorer.c b/plug-ins/fractal-explorer/fractal-explorer.c
index d15932dfd9..593a041752 100644
--- a/plug-ins/fractal-explorer/fractal-explorer.c
+++ b/plug-ins/fractal-explorer/fractal-explorer.c
@@ -412,7 +412,7 @@ explorer_run (GimpProcedure        *procedure,
     {
     case GIMP_RUN_INTERACTIVE:
       /* Possibly retrieve data */
-      gimp_get_data ("plug_in_fractalexplorer", &wvals);
+      gimp_get_data ("plug-in-fractalexplorer", &wvals);
 
       /* Get information from the dialog */
       if (! explorer_dialog ())
@@ -446,7 +446,7 @@ explorer_run (GimpProcedure        *procedure,
 
     case GIMP_RUN_WITH_LAST_VALS:
       /* Possibly retrieve data */
-      gimp_get_data ("plug_in_fractalexplorer", &wvals);
+      gimp_get_data ("plug-in-fractalexplorer", &wvals);
       make_color_map ();
       break;
 
@@ -472,7 +472,7 @@ explorer_run (GimpProcedure        *procedure,
 
       /* Store data */
       if (run_mode == GIMP_RUN_INTERACTIVE)
-        gimp_set_data ("plug_in_fractalexplorer",
+        gimp_set_data ("plug-in-fractalexplorer",
                        &wvals, sizeof (explorer_vals_t));
     }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]