From d31b6078fb34d9e7234cfab7a2cd2abd3a887267 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Fri, 16 Nov 2007 05:52:55 +0000 Subject: ext/cairo/gsttextoverlay.c: Change strcasecmp() to g_strcasecmp(). Fixes #497292. Original commit message from CVS: * ext/cairo/gsttextoverlay.c: Change strcasecmp() to g_strcasecmp(). Fixes #497292. --- ChangeLog | 5 +++++ ext/cairo/gsttextoverlay.c | 13 ++++++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index c28320b1..e1d6c347 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-11-15 David Schleef + + * ext/cairo/gsttextoverlay.c: + Change strcasecmp() to g_strcasecmp(). Fixes #497292. + 2007-11-15 Wim Taymans Patch by: Jordi Jaen Pallares diff --git a/ext/cairo/gsttextoverlay.c b/ext/cairo/gsttextoverlay.c index bf904efe..69422a8e 100644 --- a/ext/cairo/gsttextoverlay.c +++ b/ext/cairo/gsttextoverlay.c @@ -22,7 +22,6 @@ #include #endif #include -#include #include #include "gsttextoverlay.h" @@ -340,11 +339,11 @@ gst_text_overlay_set_property (GObject * object, guint prop_id, case ARG_VALIGN:{ const gchar *s = g_value_get_string (value); - if (strcasecmp (s, "baseline") == 0) + if (g_strcasecmp (s, "baseline") == 0) overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_BASELINE; - else if (strcasecmp (s, "bottom") == 0) + else if (g_strcasecmp (s, "bottom") == 0) overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_BOTTOM; - else if (strcasecmp (s, "top") == 0) + else if (g_strcasecmp (s, "top") == 0) overlay->valign = GST_CAIRO_TEXT_OVERLAY_VALIGN_TOP; else g_warning ("Invalid 'valign' property value: %s", s); @@ -353,11 +352,11 @@ gst_text_overlay_set_property (GObject * object, guint prop_id, case ARG_HALIGN:{ const gchar *s = g_value_get_string (value); - if (strcasecmp (s, "left") == 0) + if (g_strcasecmp (s, "left") == 0) overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_LEFT; - else if (strcasecmp (s, "right") == 0) + else if (g_strcasecmp (s, "right") == 0) overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_RIGHT; - else if (strcasecmp (s, "center") == 0) + else if (g_strcasecmp (s, "center") == 0) overlay->halign = GST_CAIRO_TEXT_OVERLAY_HALIGN_CENTER; else g_warning ("Invalid 'halign' property value: %s", s); -- cgit