diff options
author | Havoc Pennington <hp@pobox.com> | 1999-10-26 22:04:29 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 1999-10-26 22:04:29 +0000 |
commit | 3589986260b854c5420406596c5433fc58a5ea76 (patch) | |
tree | 9fb0de28cc5252582a420619bee34f16b029bc78 /gdk-pixbuf/gdk-pixbuf-loader.h | |
parent | bfd0c1279810e2f4b0efe4312d2856d67162b528 (diff) | |
download | gtk+-3589986260b854c5420406596c5433fc58a5ea76.tar.gz |
fix signals
1999-10-26 Havoc Pennington <hp@pobox.com>
* src/gdk-pixbuf-loader.h: fix signals
* src/gdk-pixbuf-io.h: add new vtable fields
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-loader.h')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-loader.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-loader.h b/gdk-pixbuf/gdk-pixbuf-loader.h index 8cc9cc6be6..8738c307dd 100644 --- a/gdk-pixbuf/gdk-pixbuf-loader.h +++ b/gdk-pixbuf/gdk-pixbuf-loader.h @@ -56,11 +56,10 @@ typedef struct _GdkPixbufLoaderClass GdkPixbufLoaderClass; struct _GdkPixbufLoaderClass { GtkObjectClass parent_class; - void (* area_updated) (GdkPixbufLoader *loader, - int x, int y, int width, int height); - void (* area_prepared) (GdkPixbufLoader *loader, - GdkPixbuf *image, - int x, int y, int width, int height); + void (* area_prepared) (GdkPixbufLoader *loader); + + void (* area_updated) (GdkPixbufLoader *loader, + int x, int y, int width, int height); }; |