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 ().
This commit is contained in:
Sven Neumann 2002-04-12 14:49:00 +00:00 committed by Sven Neumann
parent 1a259d681a
commit ffb7a3d59d
10 changed files with 22 additions and 2 deletions

View File

@ -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

View File

@ -623,6 +623,7 @@ save_dialog (image_ID)
gtk_widget_show (dlg);
gtk_main ();
gimp_help_free ();
gdk_flush ();
return bint.run;

View File

@ -671,6 +671,7 @@ dialog (GimpDrawable *mangle)
gtk_widget_show (dlg);
gtk_main ();
gimp_help_free ();
gdk_flush ();
return dialog_status;

View File

@ -2984,6 +2984,7 @@ save_dialog (void)
gtk_widget_show (dialog);
gtk_main ();
gimp_help_free ();
gdk_flush ();
psvals.level = (vals->level) ? 2 : 1;

View File

@ -2984,6 +2984,7 @@ save_dialog (void)
gtk_widget_show (dialog);
gtk_main ();
gimp_help_free ();
gdk_flush ();
psvals.level = (vals->level) ? 2 : 1;

View File

@ -552,6 +552,7 @@ sparkle_dialog (void)
gtk_widget_show (dlg);
gtk_main ();
gimp_help_free ();
gdk_flush ();
return sint.run;

View File

@ -1199,6 +1199,7 @@ dialog_box (GimpDrawable *drawable)
gtk_widget_show (dlg);
gtk_main ();
gimp_help_free ();
gdk_flush ();
}

View File

@ -339,6 +339,7 @@ maze_dialog (void)
gtk_widget_show_all (dlg);
gtk_main ();
gimp_help_free ();
gdk_flush ();
return maze_run;

View File

@ -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;
}

View File

@ -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);