aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addressbook/ChangeLog8
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c4
2 files changed, 10 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 149f24f0da..a4aa09f4de 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,11 @@
+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 ]
+
2004-12-06 Not Zed <NotZed@Ximian.com>
* gui/component/addressbook-config.c (eabc_general_type): set the
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));
}
}