aboutsummaryrefslogtreecommitdiff
path: root/src/mimeview.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/mimeview.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/mimeview.c')
-rw-r--r--src/mimeview.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mimeview.c b/src/mimeview.c
index b847e117..5b0621bf 100644
--- a/src/mimeview.c
+++ b/src/mimeview.c
@@ -783,8 +783,8 @@ static void mimeview_selection_changed(GtkTreeSelection *selection,
default:
mimeview_change_view_type(mimeview, MIMEVIEW_TEXT);
#if USE_GPGME
- if (g_strcasecmp(partinfo->content_type,
- "application/pgp-signature") == 0)
+ if (g_ascii_strcasecmp(partinfo->content_type,
+ "application/pgp-signature") == 0)
mimeview_show_signature_part(mimeview, partinfo);
else
#endif
@@ -1169,8 +1169,8 @@ static void mimeview_update_signature_info(MimeView *mimeview)
partinfo = mimeview_get_selected_part(mimeview);
if (!partinfo) return;
- if (g_strcasecmp(partinfo->content_type,
- "application/pgp-signature") == 0) {
+ if (g_ascii_strcasecmp(partinfo->content_type,
+ "application/pgp-signature") == 0) {
mimeview_change_view_type(mimeview, MIMEVIEW_TEXT);
mimeview_show_signature_part(mimeview, partinfo);
}