diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-17 02:26:50 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-17 09:28:24 +0800 |
commit | dba4361bb54a34cd31a2cc73393a5894959407af (patch) | |
tree | 1aa6f0bff99320333c0d295b915d9e4189cb2799 /widgets | |
parent | 025e2189e347ac1f0e22dae8c695fab0d1ce47f1 (diff) | |
download | gsoc2013-evolution-dba4361bb54a34cd31a2cc73393a5894959407af.tar.gz gsoc2013-evolution-dba4361bb54a34cd31a2cc73393a5894959407af.tar.zst gsoc2013-evolution-dba4361bb54a34cd31a2cc73393a5894959407af.zip |
Bug 578478 – Composer shows not all "From" information
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-account-combo-box.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-account-combo-box.c b/widgets/misc/e-account-combo-box.c index ebde2b5c0e..21f30b697c 100644 --- a/widgets/misc/e-account-combo-box.c +++ b/widgets/misc/e-account-combo-box.c @@ -57,7 +57,7 @@ account_combo_box_has_dupes (GList *list, for (iter = list; iter != NULL; iter = iter->next) { EAccount *account = iter->data; - if (strcmp (account->id->address, address) == 0) + if (g_ascii_strcasecmp (account->id->address, address) == 0) count++; } |