mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 12:32:29 +00:00
GESSimpleTimelineLayer: reverting const-ification
This commit is contained in:
parent
42f4253ee2
commit
c568efb663
2 changed files with 3 additions and 3 deletions
|
@ -358,11 +358,11 @@ ges_simple_timeline_layer_add_object (GESSimpleTimelineLayer * layer,
|
||||||
*
|
*
|
||||||
* Gets the timeline object at the given position.
|
* 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.
|
* the position is off the end of the layer.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const GESTimelineObject *
|
GESTimelineObject *
|
||||||
ges_simple_timeline_layer_nth (GESSimpleTimelineLayer * layer, gint position)
|
ges_simple_timeline_layer_nth (GESSimpleTimelineLayer * layer, gint position)
|
||||||
{
|
{
|
||||||
GList *list;
|
GList *list;
|
||||||
|
|
|
@ -87,7 +87,7 @@ ges_simple_timeline_layer_move_object (GESSimpleTimelineLayer *layer,
|
||||||
gboolean
|
gboolean
|
||||||
ges_simple_timeline_layer_is_valid (GESSimpleTimelineLayer *layer);
|
ges_simple_timeline_layer_is_valid (GESSimpleTimelineLayer *layer);
|
||||||
|
|
||||||
const GESTimelineObject *
|
GESTimelineObject *
|
||||||
ges_simple_timeline_layer_nth (GESSimpleTimelineLayer *layer,
|
ges_simple_timeline_layer_nth (GESSimpleTimelineLayer *layer,
|
||||||
gint position);
|
gint position);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue