mirror of https://github.com/GNOME/gimp.git
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! ;-)
This commit is contained in:
parent
1fb2448850
commit
c109a35c25
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue