mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 22:16:22 +00:00
ges-timeline: Fix ges_timeline_get_project macro.
This macro was a little confused about its own meaning.
This commit is contained in:
parent
10820bd41d
commit
71b9d421b8
1 changed files with 2 additions and 2 deletions
|
@ -50,11 +50,11 @@ G_BEGIN_DECLS
|
|||
|
||||
/**
|
||||
* ges_timeline_get_project:
|
||||
* @obj: The #GESClip from which to retrieve the project
|
||||
* @obj: The #GESTimeline from which to retrieve the project
|
||||
*
|
||||
* Helper macro to retrieve the project from which a #GESTimeline as been extracted
|
||||
*/
|
||||
#define ges_timeline_get_project(obj) (GES_TIMELINE (ges_extractable_get_asset (obj))
|
||||
#define ges_timeline_get_project(obj) (GES_PROJECT (ges_extractable_get_asset (GES_EXTRACTABLE(obj))))
|
||||
|
||||
typedef struct _GESTimelinePrivate GESTimelinePrivate;
|
||||
|
||||
|
|
Loading…
Reference in a new issue