diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 8 | ||||
-rw-r--r-- | 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 <caglar@uludag.org.tr> + + ** 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 <jpr@novell.com> * 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; } |