summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/gdk-pixbuf-loader.h
diff options
context:
space:
mode:
authorHavoc Pennington <hp@pobox.com>1999-10-26 22:04:29 +0000
committerHavoc Pennington <hp@src.gnome.org>1999-10-26 22:04:29 +0000
commit3589986260b854c5420406596c5433fc58a5ea76 (patch)
tree9fb0de28cc5252582a420619bee34f16b029bc78 /gdk-pixbuf/gdk-pixbuf-loader.h
parentbfd0c1279810e2f4b0efe4312d2856d67162b528 (diff)
downloadgtk+-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.h9
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);
};