diff options
author | Manish Singh <yosh@gimp.org> | 2002-09-29 21:24:24 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 2002-09-29 21:24:24 +0000 |
commit | d8efdf00248d59b4f6a0166ccf47cb63eb696b25 (patch) | |
tree | 7df94339089247bbbee5d9ac2e7c4d6dfd0e0e8d /gdk-pixbuf/gdk-pixbuf-animation.c | |
parent | 9ab61d69389feb4732dafddc6dd6cc7887073756 (diff) | |
download | gdk-pixbuf-d8efdf00248d59b4f6a0166ccf47cb63eb696b25.tar.gz |
add deprecation compile flags
Sun Sep 29 14:22:47 2002 Manish Singh <yosh@gimp.org>
* contrib/gdk-pixbuf-xlib/Makefile.am demos/Makefile.am
demos/gtk-demo/Makefile.am: add deprecation compile flags
* demos/testanimation.c demos/testpixbuf-save.c demos/testpixbuf.c
demos/gtk-demo/*.c gdk-pixbuf/gdk-pixbuf-animation.c
gdk-pixbuf/gdk-pixbuf.c: minor cleanups, getting rid of
unnecessary casts
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-animation.c')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-animation.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-animation.c b/gdk-pixbuf/gdk-pixbuf-animation.c index 4185eba91..492e8a538 100644 --- a/gdk-pixbuf/gdk-pixbuf-animation.c +++ b/gdk-pixbuf/gdk-pixbuf-animation.c @@ -243,7 +243,7 @@ gdk_pixbuf_animation_new_from_file (const char *filename, GdkPixbufAnimation * gdk_pixbuf_animation_ref (GdkPixbufAnimation *animation) { - return (GdkPixbufAnimation*) g_object_ref (G_OBJECT (animation)); + return (GdkPixbufAnimation*) g_object_ref (animation); } /** @@ -255,7 +255,7 @@ gdk_pixbuf_animation_ref (GdkPixbufAnimation *animation) void gdk_pixbuf_animation_unref (GdkPixbufAnimation *animation) { - g_object_unref (G_OBJECT (animation)); + g_object_unref (animation); } /** |