mirror of https://github.com/GNOME/gimp.git
plug-ins/common/gtm.c plug-ins/common/illusion.c plug-ins/common/ps.c
2002-04-12 Sven Neumann <sven@gimp.org> * plug-ins/common/gtm.c * plug-ins/common/illusion.c * plug-ins/common/ps.c * plug-ins/common/sparkle.c * plug-ins/common/wind.c * plug-ins/maze/maze_face.c * plug-ins/sel2path/sel2path.c * plug-ins/sel2path/sel2path_adv_dialog.c: applied a patch from <iccii@hotmail.com> that adds calls to gimp_help_free() even though I think that omitting gimp_help_free() is tolerable lazyness (#76984).
This commit is contained in:
parent
1a259d681a
commit
ffb7a3d59d
ChangeLog
plug-ins
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
|||
2002-04-12 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/common/gtm.c
|
||||
* plug-ins/common/illusion.c
|
||||
* plug-ins/common/ps.c
|
||||
* plug-ins/common/sparkle.c
|
||||
* plug-ins/common/wind.c
|
||||
* plug-ins/maze/maze_face.c
|
||||
* plug-ins/sel2path/sel2path.c
|
||||
* plug-ins/sel2path/sel2path_adv_dialog.c: applied a patch from
|
||||
<iccii@hotmail.com> that adds calls to gimp_help_free() even though I
|
||||
think that omitting gimp_help_free() is tolerable lazyness (#76984).
|
||||
|
||||
2002-04-12 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/core/gimpimage-crop.c: reordered some lines, no logic
|
||||
|
|
|
@ -623,6 +623,7 @@ save_dialog (image_ID)
|
|||
gtk_widget_show (dlg);
|
||||
|
||||
gtk_main ();
|
||||
gimp_help_free ();
|
||||
gdk_flush ();
|
||||
|
||||
return bint.run;
|
||||
|
|
|
@ -671,6 +671,7 @@ dialog (GimpDrawable *mangle)
|
|||
gtk_widget_show (dlg);
|
||||
|
||||
gtk_main ();
|
||||
gimp_help_free ();
|
||||
gdk_flush ();
|
||||
|
||||
return dialog_status;
|
||||
|
|
|
@ -2984,6 +2984,7 @@ save_dialog (void)
|
|||
gtk_widget_show (dialog);
|
||||
|
||||
gtk_main ();
|
||||
gimp_help_free ();
|
||||
gdk_flush ();
|
||||
|
||||
psvals.level = (vals->level) ? 2 : 1;
|
||||
|
|
|
@ -2984,6 +2984,7 @@ save_dialog (void)
|
|||
gtk_widget_show (dialog);
|
||||
|
||||
gtk_main ();
|
||||
gimp_help_free ();
|
||||
gdk_flush ();
|
||||
|
||||
psvals.level = (vals->level) ? 2 : 1;
|
||||
|
|
|
@ -552,6 +552,7 @@ sparkle_dialog (void)
|
|||
gtk_widget_show (dlg);
|
||||
|
||||
gtk_main ();
|
||||
gimp_help_free ();
|
||||
gdk_flush ();
|
||||
|
||||
return sint.run;
|
||||
|
|
|
@ -1199,6 +1199,7 @@ dialog_box (GimpDrawable *drawable)
|
|||
gtk_widget_show (dlg);
|
||||
|
||||
gtk_main ();
|
||||
gimp_help_free ();
|
||||
gdk_flush ();
|
||||
}
|
||||
|
||||
|
|
|
@ -339,6 +339,7 @@ maze_dialog (void)
|
|||
gtk_widget_show_all (dlg);
|
||||
|
||||
gtk_main ();
|
||||
gimp_help_free ();
|
||||
gdk_flush ();
|
||||
|
||||
return maze_run;
|
||||
|
|
|
@ -322,6 +322,7 @@ sel2path_dialog (SELVALS *sels)
|
|||
retVal = FALSE;
|
||||
|
||||
gimp_ui_init ("sel2path", FALSE);
|
||||
gimp_help_init ();
|
||||
|
||||
dlg = gimp_dialog_new (_("Sel2Path Advanced Settings"), "sel2path",
|
||||
gimp_standard_help_func, "filters/sel2path.html",
|
||||
|
@ -351,6 +352,7 @@ sel2path_dialog (SELVALS *sels)
|
|||
gtk_widget_show (dlg);
|
||||
|
||||
gtk_main ();
|
||||
gimp_help_free ();
|
||||
|
||||
return retVal;
|
||||
}
|
||||
|
|
|
@ -87,8 +87,6 @@ dialog_create_selection_area (SELVALS *sels)
|
|||
GtkObject *adj;
|
||||
gint row;
|
||||
|
||||
gimp_help_init ();
|
||||
|
||||
table = gtk_table_new (20, 3, FALSE);
|
||||
gtk_table_set_row_spacings (GTK_TABLE (table), 2);
|
||||
gtk_table_set_col_spacings (GTK_TABLE (table), 2);
|
||||
|
|
Loading…
Reference in New Issue