From: Thibault Saunier Date: Sat, 26 Apr 2014 06:55:31 +0000 (+0200) Subject: ges: Rename remaning tlobj to clip X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff1446c2b28a8b896a45a3a17a669fac39975b9b;p=platform%2Fupstream%2Fgst-editing-services.git ges: Rename remaning tlobj to clip https://bugzilla.gnome.org/show_bug.cgi?id=729382 --- diff --git a/ges/ges-clip.c b/ges/ges-clip.c index b6a1a74..b67b704 100644 --- a/ges/ges-clip.c +++ b/ges/ges-clip.c @@ -356,9 +356,9 @@ _child_removed (GESContainer * container, GESTimelineElement * element) } static void -add_tlobj_to_list (gpointer key, gpointer tlobj, GList ** list) +add_clip_to_list (gpointer key, gpointer clip, GList ** list) { - *list = g_list_prepend (*list, gst_object_ref (tlobj)); + *list = g_list_prepend (*list, gst_object_ref (clip)); } static GList * @@ -417,7 +417,7 @@ _ungroup (GESContainer * container, gboolean recursive) } } g_list_free_full (children, gst_object_unref); - g_hash_table_foreach (_tracktype_clip, (GHFunc) add_tlobj_to_list, &ret); + g_hash_table_foreach (_tracktype_clip, (GHFunc) add_clip_to_list, &ret); g_hash_table_unref (_tracktype_clip); return ret;