diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-17 02:26:50 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-17 02:26:50 +0800 |
commit | e8a2bad7ec6be90bdf75f7bdcf12c24e15b620af (patch) | |
tree | 38400a7eda90052e6d8cfa698495a9b8c59cf688 /widgets/misc/e-account-combo-box.c | |
parent | e4fa8fe10408c4c370e1e11e4bb2d7745f50aceb (diff) | |
download | gsoc2013-evolution-e8a2bad7ec6be90bdf75f7bdcf12c24e15b620af.tar.gz gsoc2013-evolution-e8a2bad7ec6be90bdf75f7bdcf12c24e15b620af.tar.zst gsoc2013-evolution-e8a2bad7ec6be90bdf75f7bdcf12c24e15b620af.zip |
Bug 578478 – Composer shows not all "From" information
Diffstat (limited to 'widgets/misc/e-account-combo-box.c')
-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++; } |