aboutsummaryrefslogtreecommitdiff
path: root/src/prefs_filter_edit.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-06-10 09:28:05 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-06-10 09:28:05 +0000
commit2ce75a37bcca6a5c960c1fb56b530c24de5a8492 (patch)
tree0c67890575d8e869cef9e8e67e14b12e7959b0d2 /src/prefs_filter_edit.c
parent7ac4bf2db5d09d02f9e0e7ca4da691b7bd5ff0d9 (diff)
fixed Turkish locale problem.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@333 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/prefs_filter_edit.c')
-rw-r--r--src/prefs_filter_edit.c4
1 files changed, 2 insertions, 2 deletions
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;