aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-editor
diff options
context:
space:
mode:
authorS.Çaglar Onur <caglar@uludag.org.tr>2004-12-09 09:42:37 +0800
committerHans Petter <hansp@src.gnome.org>2004-12-09 09:42:37 +0800
commitfce720a3dfb833bea56226573d2187ea539e3182 (patch)
tree9102adb9228d5f6965b8e4851407de94e9b0e278 /addressbook/gui/contact-editor
parent738d67c21414e825b2ef483abde9ea571f8c66fa (diff)
downloadgsoc2013-evolution-fce720a3dfb833bea56226573d2187ea539e3182.tar
gsoc2013-evolution-fce720a3dfb833bea56226573d2187ea539e3182.tar.gz
gsoc2013-evolution-fce720a3dfb833bea56226573d2187ea539e3182.tar.bz2
gsoc2013-evolution-fce720a3dfb833bea56226573d2187ea539e3182.tar.lz
gsoc2013-evolution-fce720a3dfb833bea56226573d2187ea539e3182.tar.xz
gsoc2013-evolution-fce720a3dfb833bea56226573d2187ea539e3182.tar.zst
gsoc2013-evolution-fce720a3dfb833bea56226573d2187ea539e3182.zip
some strcasecmp() calls changed with g_ascii_strcasecmp() for Turkish
2004-12-08 S.Çaglar Onur <caglar@uludag.org.tr> * evolution-2.0.2/addressbook/gui/contact-editor/e-contact-editor.c (get_ui_slot_param) (get_attributes_named): some strcasecmp() calls changed with g_ascii_strcasecmp() for Turkish character conversiton problems [ http://www.i18nguy.com/unicode/turkish-i18n.html ] svn path=/trunk/; revision=28092
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c
index 3bd1780a05..22b9919535 100644
--- a/addressbook/gui/contact-editor/e-contact-editor.c
+++ b/addressbook/gui/contact-editor/e-contact-editor.c
@@ -781,7 +781,7 @@ get_ui_slot_param (EVCardAttribute *attr)
param = l->data;
str = e_vcard_attribute_param_get_name (param);
- if (!strcasecmp (str, EVOLUTION_UI_SLOT_PARAM))
+ if (!g_ascii_strcasecmp (str, EVOLUTION_UI_SLOT_PARAM))
break;
param = NULL;
@@ -1013,7 +1013,7 @@ get_attributes_named (EVCard *vcard, const gchar *attr_name)
name = e_vcard_attribute_get_name (attr);
- if (!strcasecmp (attr_name, name)) {
+ if (!g_ascii_strcasecmp (attr_name, name)) {
attr_list_out = g_list_append (attr_list_out, e_vcard_attribute_copy (attr));
}
}