From 1a4c4d3ac042554a08f7878b6f79d05990099c2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corentin=20No=C3=ABl?= Date: Sun, 2 Apr 2017 23:03:18 +0200 Subject: [PATCH] Tiny fixes in the documentation https://bugzilla.gnome.org/show_bug.cgi?id=780854 --- ges/ges-layer.c | 2 +- ges/ges-pipeline.c | 4 ++-- ges/ges-timeline.c | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ges/ges-layer.c b/ges/ges-layer.c index ce94993a99..86eaaefc82 100644 --- a/ges/ges-layer.c +++ b/ges/ges-layer.c @@ -356,7 +356,7 @@ ges_layer_get_duration (GESLayer * layer) * removed. If you wish to use the @clip after this function, make sure you * call gst_object_ref() before removing it from the @layer. * - * Returns: TRUE if the clip could be removed, FALSE if the layer does + * Returns: %TRUE if the clip could be removed, %FALSE if the layer does * not want to remove the clip. */ gboolean diff --git a/ges/ges-pipeline.c b/ges/ges-pipeline.c index 2391de6607..34582799bc 100644 --- a/ges/ges-pipeline.c +++ b/ges/ges-pipeline.c @@ -928,8 +928,8 @@ _unlink_track (GESPipeline * self, GESTrack * track) * * The reference to the @timeline will be stolen by the @pipeline. * - * Returns: TRUE if the @timeline could be successfully set on the @pipeline, - * else FALSE. + * Returns: %TRUE if the @timeline could be successfully set on the @pipeline, + * else %FALSE. */ gboolean ges_pipeline_set_timeline (GESPipeline * pipeline, GESTimeline * timeline) diff --git a/ges/ges-timeline.c b/ges/ges-timeline.c index 0d0fd47cd9..3b62226362 100644 --- a/ges/ges-timeline.c +++ b/ges/ges-timeline.c @@ -2819,8 +2819,8 @@ ges_timeline_new (void) * * Creates a timeline from the given URI. * - * Returns (transfer floating) (nullable): A new timeline if the uri was loaded - * successfully, or NULL if the uri could not be loaded. + * Returns: (transfer floating) (nullable): A new timeline if the uri was loaded + * successfully, or %NULL if the uri could not be loaded. */ GESTimeline * ges_timeline_new_from_uri (const gchar * uri, GError ** error) @@ -3413,7 +3413,7 @@ ges_timeline_commit_unlocked (GESTimeline * timeline) * directly executed in the non-linear engine. Call this method once you are * done with a set of changes and want it to be executed. * - * The GESTimeline::commited signal will be emitted when the (possibly updated) + * The #GESTimeline::commited signal will be emitted when the (possibly updated) * #GstPipeline is ready to output data again, except if the state of the * timeline was #GST_STATE_READY or #GST_STATE_NULL. * @@ -3423,7 +3423,7 @@ ges_timeline_commit_unlocked (GESTimeline * timeline) * * You should not try to change the state of the timeline, seek it or add * tracks to it during a commit operation, that is between a call to this - * function and after receiving the GESTimeline::commited signal. + * function and after receiving the #GESTimeline::commited signal. * * See #ges_timeline_commit_sync if you don't want to bother with waiting * for the signal.