GESSimpleTimelineLayer: reverting const-ification

This commit is contained in:
Edward Hervey 2010-12-16 19:36:15 +01:00
parent 42f4253ee2
commit c568efb663
2 changed files with 3 additions and 3 deletions

View file

@ -358,11 +358,11 @@ ges_simple_timeline_layer_add_object (GESSimpleTimelineLayer * layer,
*
* Gets the timeline object at the given position.
*
* Returns: The #GESTimelineObject at the given position or NULL if
* Returns: (transfer none): The #GESTimelineObject at the given position or NULL if
* the position is off the end of the layer.
*/
const GESTimelineObject *
GESTimelineObject *
ges_simple_timeline_layer_nth (GESSimpleTimelineLayer * layer, gint position)
{
GList *list;

View file

@ -87,7 +87,7 @@ ges_simple_timeline_layer_move_object (GESSimpleTimelineLayer *layer,
gboolean
ges_simple_timeline_layer_is_valid (GESSimpleTimelineLayer *layer);
const GESTimelineObject *
GESTimelineObject *
ges_simple_timeline_layer_nth (GESSimpleTimelineLayer *layer,
gint position);