[grisbi-cvs] grisbi/src gsb_category.c,1.21,1.22

Mickaƫl Remars mykeul at users.sourceforge.net
Mon Aug 24 15:31:11 CEST 2009


Update of /cvsroot/grisbi/grisbi/src
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25120

Modified Files:
	gsb_category.c 
Log Message:
replaced remaining strcasecmp() calls with g_strcasecmp()

Index: gsb_category.c
===================================================================
RCS file: /cvsroot/grisbi/grisbi/src/gsb_category.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- gsb_category.c	22 Oct 2008 11:18:54 -0000	1.21
+++ gsb_category.c	24 Aug 2009 13:31:08 -0000	1.22
@@ -396,16 +396,16 @@
 {
     gchar * title = NULL, * description = NULL;
 
-    if ( ! strcasecmp ( element_name, "general" ) )
+    if ( ! g_strcasecmp ( element_name, "general" ) )
     {
 	
 	while ( *attribute_names )
 	{
-	    if ( ! strcasecmp ( *attribute_names, "title" ) )
+	    if ( ! g_strcasecmp ( *attribute_names, "title" ) )
 	    {
 		title = (gchar *) *attribute_values;
 	    }
-	    if ( ! strcasecmp ( *attribute_names, "description" ) )
+	    if ( ! g_strcasecmp ( *attribute_names, "description" ) )
 	    {
 		description = (gchar *) *attribute_values;
 	    }



More information about the cvs mailing list