From c04342e4f119e7984dc6c5aa53417f052335ca58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Mon, 5 Nov 2018 13:57:25 +0100 Subject: [PATCH] timeline-element: Fix compilation errors There were some code errors introduced in commit 6b738b7a --- ges/ges-timeline-element.c | 2 +- ges/ges-timeline-element.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ges/ges-timeline-element.c b/ges/ges-timeline-element.c index 79377fed6d..fffaf5a83b 100644 --- a/ges/ges-timeline-element.c +++ b/ges/ges-timeline-element.c @@ -929,7 +929,7 @@ ges_timeline_element_get_priority (GESTimelineElement * self) * * Returns: %TRUE if @priority could be set. */ -void +gboolean ges_timeline_element_set_priority (GESTimelineElement * self, guint32 priority) { GESTimelineElementClass *klass; diff --git a/ges/ges-timeline-element.h b/ges/ges-timeline-element.h index b7b2cbaef0..04354ad210 100644 --- a/ges/ges-timeline-element.h +++ b/ges/ges-timeline-element.h @@ -218,7 +218,7 @@ GES_API gboolean ges_timeline_element_set_start (GESTimelineElement *self, GstClockTime start); GES_API gboolean ges_timeline_element_set_inpoint (GESTimelineElement *self, GstClockTime inpoint); -gboolean +GES_API gboolean ges_timeline_element_set_duration (GESTimelineElement *self, GstClockTime duration); GES_API gboolean ges_timeline_element_set_max_duration (GESTimelineElement *self, GstClockTime maxduration);