diff options
author | S.Ãa#lar Onur <caglar@uludag.org.tr> | 2004-12-01 11:05:04 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-12-01 11:05:04 +0800 |
commit | c3df6cab992028572466010f433ff387c38de3af (patch) | |
tree | 6c23466aa364eefa5d423b92f0d7872208cf8d52 /mail | |
parent | b53f63d528ae0b1f4567b997d7a74552c370640f (diff) | |
download | gsoc2013-evolution-c3df6cab992028572466010f433ff387c38de3af.tar.gz gsoc2013-evolution-c3df6cab992028572466010f433ff387c38de3af.tar.zst gsoc2013-evolution-c3df6cab992028572466010f433ff387c38de3af.zip |
** See bug #69446.
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 ]
svn path=/trunk/; revision=28020
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; } |