From 2ce75a37bcca6a5c960c1fb56b530c24de5a8492 Mon Sep 17 00:00:00 2001 From: hiro Date: Fri, 10 Jun 2005 09:28:05 +0000 Subject: fixed Turkish locale problem. git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@333 ee746299-78ed-0310-b773-934348b2243d --- src/prefs_filter_edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/prefs_filter_edit.c') diff --git a/src/prefs_filter_edit.c b/src/prefs_filter_edit.c index dab17a12..f2fa832e 100644 --- a/src/prefs_filter_edit.c +++ b/src/prefs_filter_edit.c @@ -1429,7 +1429,7 @@ static void prefs_filter_edit_activate_cond_header(const gchar *header) "header_str"); if (!menu_header) break; - if (!g_strcasecmp(menu_header, header)) { + if (!g_ascii_strcasecmp(menu_header, header)) { gtk_option_menu_set_history (GTK_OPTION_MENU(hbox->cond_type_optmenu), index); @@ -1468,7 +1468,7 @@ static void edit_header_list_dialog_add(void) for (row = 0; gtk_clist_get_text(clist, row, 0, &row_text) != 0; row++) { - if (g_strcasecmp(row_text, text) == 0) return; + if (g_ascii_strcasecmp(row_text, text) == 0) return; } ctext[0] = (gchar *)text; -- cgit v1.2.3