diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-09-19 21:00:52 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-09-19 21:00:52 +0000 |
commit | 944334da7f0d71f4879362d80be91b4a58c1f416 (patch) | |
tree | 4c469a67711bc383be4a782b356ecc7803fbb042 /gdk-pixbuf/gdk-pixbuf-animation.c | |
parent | 3f5ad7890fa10ec4811e9e1add99e131f1728524 (diff) | |
download | gtk+-944334da7f0d71f4879362d80be91b4a58c1f416.tar.gz |
Remove the _-prefix from gdk_pixbuf_set_option and
gdk_pixbuf_non_anim_new again.
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 a492c90a8d..4185eba91d 100644 --- a/gdk-pixbuf/gdk-pixbuf-animation.c +++ b/gdk-pixbuf/gdk-pixbuf-animation.c @@ -199,7 +199,7 @@ gdk_pixbuf_animation_new_from_file (const char *filename, if (pixbuf == NULL) return NULL; - animation = _gdk_pixbuf_non_anim_new (pixbuf); + animation = gdk_pixbuf_non_anim_new (pixbuf); g_object_unref (pixbuf); } else { @@ -613,7 +613,7 @@ gdk_pixbuf_non_anim_finalize (GObject *object) } GdkPixbufAnimation* -_gdk_pixbuf_non_anim_new (GdkPixbuf *pixbuf) +gdk_pixbuf_non_anim_new (GdkPixbuf *pixbuf) { GdkPixbufNonAnim *non_anim; |