trackobject: Some documentation fixing

This commit is contained in:
Thibault Saunier 2012-01-30 22:55:59 +01:00
parent 97ac4c4910
commit c783f4140a

View file

@ -868,17 +868,17 @@ ges_track_object_get_track (GESTrackObject * object)
/** /**
* ges_track_object_set_timeline_object: * ges_track_object_set_timeline_object:
* @object: The #GESTrackObject to set the parent to * @object: The #GESTrackObject to set the parent to
* @tlobj: The #GESTimelineObject, parent of @tlobj or %NULL * @tlobject: The #GESTimelineObject, parent of @tlobj or %NULL
* *
* Set the #GESTimelineObject to which @object belongs. * Set the #GESTimelineObject to which @object belongs.
*/ */
void void
ges_track_object_set_timeline_object (GESTrackObject * object, ges_track_object_set_timeline_object (GESTrackObject * object,
GESTimelineObject * tlobj) GESTimelineObject * tlobject)
{ {
GST_DEBUG ("object:%p, timeline-object:%p", object, tlobj); GST_DEBUG ("object:%p, timeline-object:%p", object, tlobject);
object->priv->timelineobj = tlobj; object->priv->timelineobj = tlobject;
} }
/** /**