aboutsummaryrefslogtreecommitdiff
path: root/src/summaryview.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/summaryview.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/summaryview.c')
-rw-r--r--src/summaryview.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/summaryview.c b/src/summaryview.c
index c8ed68ae..fab8ede7 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -4774,7 +4774,8 @@ static gint func_name(GtkTreeModel *model, \
if (msginfo_b->var_name == NULL) \
return (msginfo_a->var_name != NULL); \
\
- return g_strcasecmp(msginfo_a->var_name, msginfo_b->var_name); \
+ return g_ascii_strcasecmp \
+ (msginfo_a->var_name, msginfo_b->var_name); \
}
CMP_FUNC_DEF(summary_cmp_by_from, fromname)