removed unused return locations for menu item pointers.

2004-04-20  Sven Neumann  <sven@gimp.org>

	* plug-ins/gfig/gfig.c: removed unused return locations for menu
	item pointers.
This commit is contained in:
Sven Neumann
2004-04-19 22:22:26 +00:00
committed by Sven Neumann
parent 5bc2e4a61a
commit c5e41cdfa6
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2004-04-20 Sven Neumann <sven@gimp.org>
* plug-ins/gfig/gfig.c: removed unused return locations for menu
item pointers.
2004-04-19 Sven Neumann <sven@gimp.org>
* configure.in: set gimp_plugin_version, gimp_sysconf_version and

View File

@ -2011,7 +2011,6 @@ paint_page (void)
GtkWidget *page_menu_type;
GtkWidget *scale_scale;
GtkObject *scale_scale_data;
GtkWidget *item1, *item2, *item3;
vbox = gtk_vbox_new (FALSE, 0);
gtk_container_set_border_width (GTK_CONTAINER (vbox), 4);
@ -2045,9 +2044,9 @@ paint_page (void)
gimp_int_option_menu_new (FALSE, G_CALLBACK (paint_menu_callback),
GINT_TO_POINTER (PAINT_TYPE_MENU), 0,
_("Brush"), PAINT_BRUSH_TYPE, &item1,
_("Selection"), PAINT_SELECTION_TYPE, &item2,
_("Selection+Fill"), PAINT_SELECTION_FILL_TYPE, &item3,
_("Brush"), PAINT_BRUSH_TYPE, NULL,
_("Selection"), PAINT_SELECTION_TYPE, NULL,
_("Selection+Fill"), PAINT_SELECTION_FILL_TYPE, NULL,
NULL);