added an (unused) GimpTemplate parameter to make this function match the

2003-10-18  Sven Neumann  <sven@gimp.org>

	* app/gui/templates-commands.[ch] (templates_new_template_dialog):
	added an (unused) GimpTemplate parameter to make this function
	match the GimpTemplateActionFunc signature.
This commit is contained in:
Sven Neumann 2003-10-18 17:06:43 +00:00 committed by Sven Neumann
parent 78b6153301
commit f68d05c9ce
5 changed files with 16 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2003-10-18 Sven Neumann <sven@gimp.org>
* app/gui/templates-commands.[ch] (templates_new_template_dialog):
added an (unused) GimpTemplate parameter to make this function
match the GimpTemplateActionFunc signature.
2003-10-18 Michael Natterer <mitch@gimp.org>
* app/text/gimp-fonts.c (gimp_fonts_load): added
@ -32,8 +38,8 @@
2003-10-17 Sven Neumann <sven@gimp.org>
* app/widgets/gimpcontainerview.c (gimp_container_view_get_preview):
we have a bad bug somewhere; this function shouldn't be called for
a view w/o a container. Added a g_return_if_fail() to avoid a crash.
we have a bug somewhere; this function shouldn't be called for a
view w/o a container. Added a g_return_if_fail() to avoid a crash.
2003-10-17 Sven Neumann <sven@gimp.org>

View File

@ -110,7 +110,8 @@ templates_new_template_ok_callback (GtkWidget *widget,
}
void
templates_new_template_dialog (Gimp *gimp)
templates_new_template_dialog (Gimp *gimp,
GimpTemplate *unused)
{
GimpTemplate *template;
GtkWidget *dialog;

View File

@ -31,7 +31,8 @@ void templates_create_image_cmd_callback (GtkWidget *widget,
void templates_delete_template_cmd_callback (GtkWidget *widget,
gpointer data);
void templates_new_template_dialog (Gimp *gimp);
void templates_new_template_dialog (Gimp *gimp,
GimpTemplate *unused);
void templates_edit_template_dialog (Gimp *gimp,
GimpTemplate *template);
void templates_file_new_dialog (Gimp *gimp,

View File

@ -110,7 +110,8 @@ templates_new_template_ok_callback (GtkWidget *widget,
}
void
templates_new_template_dialog (Gimp *gimp)
templates_new_template_dialog (Gimp *gimp,
GimpTemplate *unused)
{
GimpTemplate *template;
GtkWidget *dialog;

View File

@ -31,7 +31,8 @@ void templates_create_image_cmd_callback (GtkWidget *widget,
void templates_delete_template_cmd_callback (GtkWidget *widget,
gpointer data);
void templates_new_template_dialog (Gimp *gimp);
void templates_new_template_dialog (Gimp *gimp,
GimpTemplate *unused);
void templates_edit_template_dialog (Gimp *gimp,
GimpTemplate *template);
void templates_file_new_dialog (Gimp *gimp,