mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 06:00:22 +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>
|
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
|
* 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);
|
g_object_unref (scaled->current);
|
||||||
scaled->current = NULL;
|
scaled->current = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
G_OBJECT_CLASS (gdk_pixbuf_scaled_anim_parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
@ -211,7 +213,6 @@ get_pixbuf (GdkPixbufAnimationIter *iter)
|
|||||||
{
|
{
|
||||||
GdkPixbufScaledAnimIter *scaled = (GdkPixbufScaledAnimIter *)iter;
|
GdkPixbufScaledAnimIter *scaled = (GdkPixbufScaledAnimIter *)iter;
|
||||||
GdkPixbuf *pixbuf;
|
GdkPixbuf *pixbuf;
|
||||||
gboolean force_update;
|
|
||||||
|
|
||||||
pixbuf = gdk_pixbuf_animation_iter_get_pixbuf (scaled->iter);
|
pixbuf = gdk_pixbuf_animation_iter_get_pixbuf (scaled->iter);
|
||||||
return get_scaled_pixbuf (scaled->scaled, pixbuf);
|
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->iter);
|
||||||
g_object_unref (iter->scaled);
|
g_object_unref (iter->scaled);
|
||||||
|
|
||||||
|
G_OBJECT_CLASS (gdk_pixbuf_scaled_anim_iter_parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user