app/[all files using the dialog or action area constructors] added a

2000-01-06  Michael Natterer  <mitch@gimp.org>

	* app/[all files using the dialog or action area constructors]
	* libgimp/gimpdialog.[ch]: added a "slot_object" agrument to the
	constructors' va_args lists to allow the action area buttons to be
	connected wich gtk_signal_connect_object().

	* libgimp/gimphelp.c: show the correct help page for plugins.

	* plug-ins/common/CEL.c
	* plug-ins/common/CML_explorer.c
	* plug-ins/common/Makefile.am
	* plug-ins/common/aa.c
	* plug-ins/common/align_layers.c
	* plug-ins/common/animationplay.c
	* plug-ins/common/apply_lens.c
	* plug-ins/common/blinds.c
	* plug-ins/common/blur.c
	* plug-ins/common/bumpmap.c
	* plug-ins/common/checkerboard.c
	* plug-ins/common/colorify.c
	* plug-ins/common/colortoalpha.c
	* plug-ins/common/compose.c
	* plug-ins/common/convmatrix.c
	* plug-ins/common/csource.c
	* plug-ins/common/cubism.c
	* plug-ins/common/curve_bend.c
	* plug-ins/common/decompose.c
	* plug-ins/common/deinterlace.c
	* plug-ins/common/depthmerge.c
	* plug-ins/common/despeckle.c
	* plug-ins/common/destripe.c
	* plug-ins/common/diffraction.c
	* plug-ins/common/displace.c
	* plug-ins/common/grid.c
	* plug-ins/helpbrowser/Makefile.am
	* plug-ins/helpbrowser/helpbrowser.c: use the dialog constructor
	and enable the "F1" help key.
This commit is contained in:
Michael Natterer
2000-01-06 16:40:17 +00:00
committed by Michael Natterer
parent 58561810b4
commit 884f223569
165 changed files with 1495 additions and 1676 deletions

View File

@ -250,9 +250,9 @@ create_query_box (gchar *title,
FALSE, TRUE, FALSE,
_("OK"), ok_callback,
query_box, NULL, TRUE, FALSE,
query_box, NULL, NULL, TRUE, FALSE,
_("Cancel"), query_box_cancel_callback,
query_box, NULL, FALSE, TRUE,
query_box, NULL, NULL, FALSE, TRUE,
NULL);
@ -630,7 +630,7 @@ gimp_message_box (gchar *message,
FALSE, FALSE, FALSE,
_("OK"), gimp_message_box_close_callback,
msg_box, NULL, TRUE, TRUE,
msg_box, NULL, NULL, TRUE, TRUE,
NULL);