aboutsummaryrefslogtreecommitdiff
path: root/src/prefs_display_header.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_display_header.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_display_header.c')
-rw-r--r--src/prefs_display_header.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prefs_display_header.c b/src/prefs_display_header.c
index ec0d51c9..ff508ae1 100644
--- a/src/prefs_display_header.c
+++ b/src/prefs_display_header.c
@@ -502,7 +502,7 @@ static gint prefs_display_header_find_header(GtkCList *clist,
DisplayHeaderProp *dp;
while ((dp = gtk_clist_get_row_data(clist, row)) != NULL) {
- if (g_strcasecmp(dp->name, header) == 0)
+ if (g_ascii_strcasecmp(dp->name, header) == 0)
return row;
row++;
}