title-source: Rename ges_title_clip_set_backrgound_colour as appropriate
authorThibault Saunier <thibault.saunier@collabora.com>
Mon, 10 Mar 2014 10:18:21 +0000 (11:18 +0100)
committerThibault Saunier <thibault.saunier@collabora.com>
Fri, 14 Mar 2014 11:12:17 +0000 (12:12 +0100)
The method was badly called _clip_ instead of _source_ we have not release the API
so we still can change it.

docs/libs/ges-sections.txt
ges/ges-title-clip.c
ges/ges-title-source.c
ges/ges-title-source.h

index dc2134a78d91ca4fc95da73db6f37d220581a06b..995b04ea6ff2788292ce0832c37e52e9d6ae4506 100644 (file)
@@ -803,7 +803,7 @@ ges_title_source_set_font_desc
 ges_title_source_set_halignment
 ges_title_source_set_valignment
 ges_title_source_set_text_color
-ges_title_clip_set_background_color_color
+ges_title_source_set_background_color
 ges_title_source_set_xpos
 ges_title_source_set_ypos
 ges_title_source_get_text
index 7032c1dd1f5b4db72c6045a963522b02354a1161..19daa9419cdfb59380c04bd51d9ace97bcd6eee1 100644 (file)
@@ -416,7 +416,7 @@ ges_title_clip_set_background (GESTitleClip * self, guint32 background)
   self->priv->background = background;
 
   for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
-    ges_title_clip_set_background_color_color (GES_TITLE_SOURCE (tmp->data),
+    ges_title_source_set_background_color (GES_TITLE_SOURCE (tmp->data),
         self->priv->background);
   }
 }
@@ -622,7 +622,7 @@ ges_title_clip_create_track_element (GESClip * clip, GESTrackType type)
     ges_title_source_set_halignment ((GESTitleSource *) res, priv->halign);
     ges_title_source_set_valignment ((GESTitleSource *) res, priv->valign);
     ges_title_source_set_text_color ((GESTitleSource *) res, priv->color);
-    ges_title_clip_set_background_color_color ((GESTitleSource *) res,
+    ges_title_source_set_background_color ((GESTitleSource *) res,
         priv->background);
     ges_title_source_set_xpos ((GESTitleSource *) res, priv->xpos);
     ges_title_source_set_ypos ((GESTitleSource *) res, priv->ypos);
index 6d327379291060d111008ef4638d1480e14c132f..a320a285671d85c83c00ce394b162833f88cd3ee 100644 (file)
@@ -282,14 +282,14 @@ ges_title_source_set_text_color (GESTitleSource * self, guint32 color)
 }
 
 /**
- * ges_title_clip_set_background_color_color:
+ * ges_title_source_set_background_color:
  * @self: the #GESTitleSource* to set
  * @color: the color @self is being set to
  *
  * Sets the color of the background
  */
 void
-ges_title_clip_set_background_color_color (GESTitleSource * self, guint32 color)
+ges_title_source_set_background_color (GESTitleSource * self, guint32 color)
 {
   GST_DEBUG ("self:%p, background color:%d", self, color);
 
index e4d4e13be1afdd54890aec243114df34222db79d..fa54f028c5c8ff28adc3550465b4c09b59637233 100644 (file)
@@ -90,7 +90,7 @@ void ges_title_source_set_valignment (GESTitleSource *self,
 
 void ges_title_source_set_text_color (GESTitleSource *self,
                                           guint32 color);
-void ges_title_clip_set_background_color_color (GESTitleSource *self,
+void ges_title_source_set_background_color (GESTitleSource *self,
                                           guint32 color);
 void ges_title_source_set_xpos (GESTitleSource *self,
                                           gdouble position);