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:
committed by
Arturo Espinosa
parent
8a02827e39
commit
e506cf37cb
@ -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>
|
1999-12-05 Federico Mena Quintero <federico@redhat.com>
|
||||||
|
|
||||||
* gdk-pixbuf/Makefile.am (testpixbuf_LDADD): Add back
|
* gdk-pixbuf/Makefile.am (testpixbuf_LDADD): Add back
|
||||||
@ -29,6 +34,11 @@
|
|||||||
(Windows Cursor files). These are identical to .ICO files,
|
(Windows Cursor files). These are identical to .ICO files,
|
||||||
except for the signature and 2 extra fields for the hotspot.
|
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>
|
1999-12-03 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
|
||||||
* gdk-pixbuf/io-gif.c (gif_fill_in_lines): added a comment to
|
* gdk-pixbuf/io-gif.c (gif_fill_in_lines): added a comment to
|
||||||
|
|||||||
@ -178,7 +178,7 @@ GdkPixbufModule file_formats [] = {
|
|||||||
{ "ras", pixbuf_check_sunras, NULL, NULL, NULL, NULL, NULL, NULL },
|
{ "ras", pixbuf_check_sunras, NULL, NULL, NULL, NULL, NULL, NULL },
|
||||||
{ "ico", pixbuf_check_ico, 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 },
|
{ "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 }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -353,11 +353,9 @@ gnome_canvas_pixbuf_set_arg (GtkObject *object, GtkArg *arg, guint arg_id)
|
|||||||
static void
|
static void
|
||||||
gnome_canvas_pixbuf_get_arg (GtkObject *object, GtkArg *arg, guint arg_id)
|
gnome_canvas_pixbuf_get_arg (GtkObject *object, GtkArg *arg, guint arg_id)
|
||||||
{
|
{
|
||||||
GnomeCanvasItem *item;
|
|
||||||
GnomeCanvasPixbuf *gcp;
|
GnomeCanvasPixbuf *gcp;
|
||||||
PixbufPrivate *priv;
|
PixbufPrivate *priv;
|
||||||
|
|
||||||
item = GNOME_CANVAS_ITEM (object);
|
|
||||||
gcp = GNOME_CANVAS_PIXBUF (object);
|
gcp = GNOME_CANVAS_PIXBUF (object);
|
||||||
priv = gcp->priv;
|
priv = gcp->priv;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user