diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-09-12 21:42:10 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-09-12 21:42:10 +0000 |
commit | 549449d7ab4da98aed6268509364a4e9d32202ef (patch) | |
tree | b21c3283811a9179ff43d2ad91e5e06a263a2ed6 /gdk-pixbuf | |
parent | 8409b23d64048d4cd7cdcdab35bb32a08289f1f5 (diff) | |
download | gtk+-549449d7ab4da98aed6268509364a4e9d32202ef.tar.gz |
Move GdkPixbufFrame from the public header to the gif-animation-specific
* io-gif-animation.h:
* gdk-pixbuf.h: Move GdkPixbufFrame from the public header to
the gif-animation-specific private header. (#91929)
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/ChangeLog | 6 | ||||
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf.h | 1 | ||||
-rw-r--r-- | gdk-pixbuf/io-gif-animation.h | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index 6d5b2f9d3d..5c33e041bc 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,9 @@ +2002-09-12 Matthias Clasen <maclas@gmx.de> + + * io-gif-animation.h: + * gdk-pixbuf.h: Move GdkPixbufFrame from the public header to + the gif-animation-specific private header. (#91929) + 2002-09-12 Federico Mena Quintero <federico@ximian.com> * io-jpeg.c (gdk_pixbuf__jpeg_image_load): Unref the pixbuf if we diff --git a/gdk-pixbuf/gdk-pixbuf.h b/gdk-pixbuf/gdk-pixbuf.h index 900be4f9e0..153eea8a8b 100644 --- a/gdk-pixbuf/gdk-pixbuf.h +++ b/gdk-pixbuf/gdk-pixbuf.h @@ -53,7 +53,6 @@ typedef enum { typedef struct _GdkPixbuf GdkPixbuf; typedef struct _GdkPixbufAnimation GdkPixbufAnimation; typedef struct _GdkPixbufAnimationIter GdkPixbufAnimationIter; -typedef struct _GdkPixbufFrame GdkPixbufFrame; #define GDK_TYPE_PIXBUF (gdk_pixbuf_get_type ()) #define GDK_PIXBUF(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_PIXBUF, GdkPixbuf)) diff --git a/gdk-pixbuf/io-gif-animation.h b/gdk-pixbuf/io-gif-animation.h index ce1ebaa6f9..f53ae05e1d 100644 --- a/gdk-pixbuf/io-gif-animation.h +++ b/gdk-pixbuf/io-gif-animation.h @@ -47,6 +47,7 @@ typedef enum { typedef struct _GdkPixbufGifAnim GdkPixbufGifAnim; typedef struct _GdkPixbufGifAnimClass GdkPixbufGifAnimClass; +typedef struct _GdkPixbufFrame GdkPixbufFrame; #define GDK_TYPE_PIXBUF_GIF_ANIM (gdk_pixbuf_gif_anim_get_type ()) #define GDK_PIXBUF_GIF_ANIM(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_PIXBUF_GIF_ANIM, GdkPixbufGifAnim)) |