call gimp_uninstall_temp_proc() with script->pdb_name, not
2004-02-03 Michael Natterer <mitch@gimp.org> * plug-ins/script-fu/script-fu-scripts.c (script_fu_free_script): call gimp_uninstall_temp_proc() with script->pdb_name, not script->script_name. Fixes bug #133280.
This commit is contained in:

committed by
Michael Natterer

parent
f70a30818d
commit
f77ff9d400
@ -1,3 +1,9 @@
|
|||||||
|
2004-02-03 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* plug-ins/script-fu/script-fu-scripts.c (script_fu_free_script):
|
||||||
|
call gimp_uninstall_temp_proc() with script->pdb_name, not
|
||||||
|
script->script_name. Fixes bug #133280.
|
||||||
|
|
||||||
2004-02-02 DindinX <david@dindinx.org>
|
2004-02-02 DindinX <david@dindinx.org>
|
||||||
|
|
||||||
* app/display/gimpcanvas.c: gimp_canvas_draw_segments():
|
* app/display/gimpcanvas.c: gimp_canvas_draw_segments():
|
||||||
|
@ -991,7 +991,7 @@ script_fu_free_script (SFScript *script)
|
|||||||
gint i;
|
gint i;
|
||||||
|
|
||||||
/* Uninstall the temporary procedure for this script */
|
/* Uninstall the temporary procedure for this script */
|
||||||
gimp_uninstall_temp_proc (script->script_name);
|
gimp_uninstall_temp_proc (script->pdb_name);
|
||||||
|
|
||||||
if (script)
|
if (script)
|
||||||
{
|
{
|
||||||
|
@ -991,7 +991,7 @@ script_fu_free_script (SFScript *script)
|
|||||||
gint i;
|
gint i;
|
||||||
|
|
||||||
/* Uninstall the temporary procedure for this script */
|
/* Uninstall the temporary procedure for this script */
|
||||||
gimp_uninstall_temp_proc (script->script_name);
|
gimp_uninstall_temp_proc (script->pdb_name);
|
||||||
|
|
||||||
if (script)
|
if (script)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user