Patch from Arjan to fix an initializer.

1999-12-06  Federico Mena Quintero  <federico@redhat.com>

	* gdk-pixbuf/gdk-pixbuf-io.c (file_formats): Patch from Arjan to
	fix an initializer.
This commit is contained in:
Federico Mena Quintero 1999-12-06 18:57:03 +00:00 committed by Arturo Espinosa
parent 8a02827e39
commit e506cf37cb
3 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,8 @@
1999-12-06 Federico Mena Quintero <federico@redhat.com>
* gdk-pixbuf/gdk-pixbuf-io.c (file_formats): Patch from Arjan to
fix an initializer.
1999-12-05 Federico Mena Quintero <federico@redhat.com>
* gdk-pixbuf/Makefile.am (testpixbuf_LDADD): Add back
@ -29,6 +34,11 @@
(Windows Cursor files). These are identical to .ICO files,
except for the signature and 2 extra fields for the hotspot.
1999-12-03 Federico Mena Quintero <federico@redhat.com>
* gdk-pixbuf/gnome-canvas-pixbuf.c (gnome_canvas_pixbuf_get_arg):
Removed unused variable `item'.
1999-12-03 Jonathan Blandford <jrb@redhat.com>
* gdk-pixbuf/io-gif.c (gif_fill_in_lines): added a comment to

View File

@ -178,7 +178,7 @@ GdkPixbufModule file_formats [] = {
{ "ras", pixbuf_check_sunras, NULL, NULL, NULL, NULL, NULL, NULL },
{ "ico", pixbuf_check_ico, NULL, NULL, NULL, NULL, NULL, NULL },
{ "bmp", pixbuf_check_bmp, NULL, NULL, NULL, NULL, NULL, NULL },
{ NULL, NULL, NULL, NULL, NULL, NULL, NULL }
{ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
};

View File

@ -353,11 +353,9 @@ gnome_canvas_pixbuf_set_arg (GtkObject *object, GtkArg *arg, guint arg_id)
static void
gnome_canvas_pixbuf_get_arg (GtkObject *object, GtkArg *arg, guint arg_id)
{
GnomeCanvasItem *item;
GnomeCanvasPixbuf *gcp;
PixbufPrivate *priv;
item = GNOME_CANVAS_ITEM (object);
gcp = GNOME_CANVAS_PIXBUF (object);
priv = gcp->priv;