From dd50427714d38f11b29230592f445a3a998a0d5a Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Fri, 15 Mar 2013 12:01:58 -0300 Subject: [PATCH] clip: Make set/is_moving_from_layer internal --- docs/libs/ges-sections.txt | 4 +--- ges/ges-clip.h | 2 -- ges/ges-internal.h | 2 ++ 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/libs/ges-sections.txt b/docs/libs/ges-sections.txt index ad3375b0ea..7f1e4fbf5d 100644 --- a/docs/libs/ges-sections.txt +++ b/docs/libs/ges-sections.txt @@ -396,13 +396,11 @@ ges_clip_set_supported_formats ges_clip_get_supported_formats ges_clip_split ges_clip_edit - GES_CLIP_HEIGHT ges_clip_create_track_elements ges_clip_create_track_element ges_clip_fill_track_element -ges_clip_is_moving_from_layer -ges_clip_set_moving_from_layer + GESClipPrivate GES_IS_CLIP GES_IS_CLIP_CLASS diff --git a/ges/ges-clip.h b/ges/ges-clip.h index 359e688e91..1fe2b2d847 100644 --- a/ges/ges-clip.h +++ b/ges/ges-clip.h @@ -160,9 +160,7 @@ GESTrackElement* ges_clip_find_track_element (GESClip *clip, GESTrack *trac * Layer * ****************************************************/ GESTimelineLayer* ges_clip_get_layer (GESClip *clip); -gboolean ges_clip_is_moving_from_layer (GESClip *clip); gboolean ges_clip_move_to_layer (GESClip *clip, GESTimelineLayer *layer); -void ges_clip_set_moving_from_layer (GESClip *clip, gboolean is_moving); /**************************************************** * Effects * diff --git a/ges/ges-internal.h b/ges/ges-internal.h index 90c491e566..c5fba5ecc9 100644 --- a/ges/ges-internal.h +++ b/ges/ges-internal.h @@ -236,5 +236,7 @@ G_GNUC_INTERNAL void _ges_container_set_ignore_notifies (GESContainer *container * GESClip * ****************************************************/ void ges_clip_set_layer (GESClip *clip, GESTimelineLayer *layer); +gboolean ges_clip_is_moving_from_layer (GESClip *clip); +void ges_clip_set_moving_from_layer (GESClip *clip, gboolean is_moving); #endif /* __GES_INTERNAL_H__ */