[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
- Previous message: [grisbi-cvs] grisbi/src gsb_account.c, 1.46, 1.47 gsb_account_property.c, 1.43, 1.44 gsb_archive_config.c, 1.25, 1.26 gsb_assistant.c, 1.46, 1.47 gsb_assistant_account.c, 1.25, 1.26 gsb_assistant_archive.c, 1.36, 1.37 gsb_assistant_reconcile_config.c, 1.25, 1.26 gsb_autofunc.c, 1.23, 1.24 gsb_currency.c, 1.40, 1.41 gsb_currency_config.c, 1.54, 1.55 gsb_currency_link_config.c, 1.13, 1.14 gsb_data_account.c, 1.87, 1.88
- Next message: [grisbi-cvs] grisbi/src erreur.c, 1.92, 1.93 gsb_data_partial_balance.c, 1.3, 1.4 gsb_data_report.c, 1.33, 1.34 gsb_debug.c, 1.13, 1.14
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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;
}
- Previous message: [grisbi-cvs] grisbi/src gsb_account.c, 1.46, 1.47 gsb_account_property.c, 1.43, 1.44 gsb_archive_config.c, 1.25, 1.26 gsb_assistant.c, 1.46, 1.47 gsb_assistant_account.c, 1.25, 1.26 gsb_assistant_archive.c, 1.36, 1.37 gsb_assistant_reconcile_config.c, 1.25, 1.26 gsb_autofunc.c, 1.23, 1.24 gsb_currency.c, 1.40, 1.41 gsb_currency_config.c, 1.54, 1.55 gsb_currency_link_config.c, 1.13, 1.14 gsb_data_account.c, 1.87, 1.88
- Next message: [grisbi-cvs] grisbi/src erreur.c, 1.92, 1.93 gsb_data_partial_balance.c, 1.3, 1.4 gsb_data_report.c, 1.33, 1.34 gsb_debug.c, 1.13, 1.14
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cvs
mailing list