diff options
author | Jonathan Blandford <jrb@redhat.com> | 1999-11-04 18:18:07 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 1999-11-04 18:18:07 +0000 |
commit | d0ed72ee143dd9586ea42a937860c042bdd8fa74 (patch) | |
tree | 14f19ca39bb3bdd6c27817493e3f4fe9c25d650e /gdk-pixbuf/gdk-pixbuf-loader.h | |
parent | 567305020d37f24e192ffcec008e857a0da32e19 (diff) | |
download | gtk+-d0ed72ee143dd9586ea42a937860c042bdd8fa74.tar.gz |
handle the actual update. add a update_func callback. add a update_func
1999-11-04 Jonathan Blandford <jrb@redhat.com>
* src/gdk-pixbuf-loader.c (gdk_pixbuf_loader_update): handle the
actual update.
* src/io-png.c (image_begin_load): add a update_func callback.
* src/io-gif.c (image_begin_load): add a update_func callback.
* src/io-tiff.c (image_begin_load): add a update_func callback.
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-loader.h')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-loader.h b/gdk-pixbuf/gdk-pixbuf-loader.h index 76997a117d..58fab340f2 100644 --- a/gdk-pixbuf/gdk-pixbuf-loader.h +++ b/gdk-pixbuf/gdk-pixbuf-loader.h @@ -59,7 +59,7 @@ struct _GdkPixbufLoaderClass { void (* area_prepared) (GdkPixbufLoader *loader); void (* area_updated) (GdkPixbufLoader *loader, - int x, int y, int width, int height); + guint x, guint y, guint width, guint height); void (* closed) (GdkPixbufLoader *loader); }; |