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/mimeview.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mimeview.c') 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); } -- cgit v1.2.3