From c3df6cab992028572466010f433ff387c38de3af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=2E=C3=83=C2=87a=23lar=20Onur?= Date: Wed, 1 Dec 2004 03:05:04 +0000 Subject: ** See bug #69446. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2004-11-28 S.Ça#lar Onur ** See bug #69446. * evolution-2.0.2/mail/mail-account-gui.c (mail_account_gui_setup): some strcasecmp() calls changed with g_ascii_strcasecmp() for Turkish character conversiton problems [ http://www.i18nguy.com/unicode/turkish-i18n.html ] svn path=/trunk/; revision=28020 --- mail/ChangeLog | 8 ++++++++ mail/mail-account-gui.c | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 871ef4741b..bf49211f20 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,11 @@ +2004-11-28 S.Çağlar Onur + + ** See bug #69446. + + * evolution-2.0.2/mail/mail-account-gui.c (mail_account_gui_setup): + some strcasecmp() calls changed with g_ascii_strcasecmp() for Turkish + character conversiton problems [ http://www.i18nguy.com/unicode/turkish-i18n.html ] + 2004-11-26 JP Rosevear * em-format.c: wrap printf's in debug defines diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c index 3d1065acd6..7f11421929 100644 --- a/mail/mail-account-gui.c +++ b/mail/mail-account-gui.c @@ -2055,7 +2055,7 @@ mail_account_gui_setup (MailAccountGui *gui, GtkWidget *top) hstore = si; } - if (source_proto && !strcasecmp (provider->protocol, source_proto)) { + if (source_proto && !g_ascii_strcasecmp (provider->protocol, source_proto)) { fstore = item; hstore = si; } @@ -2083,7 +2083,7 @@ mail_account_gui_setup (MailAccountGui *gui, GtkWidget *top) htransport = ti; } - if (transport_proto && !strcasecmp (provider->protocol, transport_proto)) { + if (transport_proto && !g_ascii_strcasecmp (provider->protocol, transport_proto)) { ftransport = item; htransport = ti; } -- cgit v1.2.3