mirror of https://github.com/GNOME/gimp.git
fixed bug which would have leaked broken menu translations.
2004-05-05 Michael Natterer <mitch@gimp.org> * app/actions/plug-in-actions.c (plug_in_actions_add_proc): fixed bug which would have leaked broken menu translations. * app/gui/plug-in-menus.c: removed useless #includes.
This commit is contained in:
parent
96ba0235ed
commit
03d8d8278e
|
@ -1,3 +1,10 @@
|
|||
2004-05-05 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/actions/plug-in-actions.c (plug_in_actions_add_proc): fixed
|
||||
bug which would have leaked broken menu translations.
|
||||
|
||||
* app/gui/plug-in-menus.c: removed useless #includes.
|
||||
|
||||
2004-05-05 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/actions/file-actions.c
|
||||
|
|
|
@ -302,11 +302,11 @@ plug_in_actions_add_proc (GimpActionGroup *group,
|
|||
*p2 = '\0';
|
||||
|
||||
plug_in_actions_build_path (group, path_original, path_translated);
|
||||
|
||||
g_free (path_original);
|
||||
g_free (path_translated);
|
||||
}
|
||||
|
||||
g_free (path_original);
|
||||
g_free (path_translated);
|
||||
|
||||
g_free (help_id);
|
||||
}
|
||||
|
||||
|
|
|
@ -31,10 +31,8 @@
|
|||
#include "plug-in/plug-ins.h"
|
||||
#include "plug-in/plug-in-def.h"
|
||||
#include "plug-in/plug-in-proc.h"
|
||||
#include "plug-in/plug-in-run.h"
|
||||
|
||||
#include "widgets/gimpuimanager.h"
|
||||
#include "widgets/gimpwidgets-utils.h"
|
||||
|
||||
#include "plug-in-menus.h"
|
||||
|
||||
|
|
|
@ -31,10 +31,8 @@
|
|||
#include "plug-in/plug-ins.h"
|
||||
#include "plug-in/plug-in-def.h"
|
||||
#include "plug-in/plug-in-proc.h"
|
||||
#include "plug-in/plug-in-run.h"
|
||||
|
||||
#include "widgets/gimpuimanager.h"
|
||||
#include "widgets/gimpwidgets-utils.h"
|
||||
|
||||
#include "plug-in-menus.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue