mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
Chain up. (#433125, Christian Persch)
2007-04-25 Matthias Clasen <mclasen@redhat.com> * gdk-pixbuf-scaled-anim.c (gdk_pixbuf_scaled_anim_iter_finalize): Chain up. (#433125, Christian Persch) svn path=/trunk/; revision=17632
This commit is contained in:
parent
4a74188834
commit
fe1bf90e92
@ -1,3 +1,8 @@
|
||||
2007-04-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk-pixbuf-scaled-anim.c (gdk_pixbuf_scaled_anim_iter_finalize):
|
||||
Chain up. (#433125, Christian Persch)
|
||||
|
||||
Wed Mar 28 15:27:35 2007 Tim Janik <timj@imendio.com>
|
||||
|
||||
* io-jpeg.c: applied JPEG loader fix from maemo. this fix makes sure
|
||||
|
@ -105,6 +105,8 @@ gdk_pixbuf_scaled_anim_finalize (GObject *object)
|
||||
g_object_unref (scaled->current);
|
||||
scaled->current = NULL;
|
||||
}
|
||||
|
||||
G_OBJECT_CLASS (gdk_pixbuf_scaled_anim_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
@ -211,7 +213,6 @@ get_pixbuf (GdkPixbufAnimationIter *iter)
|
||||
{
|
||||
GdkPixbufScaledAnimIter *scaled = (GdkPixbufScaledAnimIter *)iter;
|
||||
GdkPixbuf *pixbuf;
|
||||
gboolean force_update;
|
||||
|
||||
pixbuf = gdk_pixbuf_animation_iter_get_pixbuf (scaled->iter);
|
||||
return get_scaled_pixbuf (scaled->scaled, pixbuf);
|
||||
@ -241,6 +242,8 @@ gdk_pixbuf_scaled_anim_iter_finalize (GObject *object)
|
||||
|
||||
g_object_unref (iter->iter);
|
||||
g_object_unref (iter->scaled);
|
||||
|
||||
G_OBJECT_CLASS (gdk_pixbuf_scaled_anim_iter_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user