diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-17 02:26:50 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-21 10:52:36 +0800 |
commit | 74cdb40199a1a429861c11b5356f302c99917d12 (patch) | |
tree | ac3b02b555237497b3200588c2a94a45e5c028f8 /widgets | |
parent | a538f3f3100dbdbae1ea172ae3b8344e650d529d (diff) | |
download | gsoc2013-evolution-74cdb40199a1a429861c11b5356f302c99917d12.tar.gz gsoc2013-evolution-74cdb40199a1a429861c11b5356f302c99917d12.tar.zst gsoc2013-evolution-74cdb40199a1a429861c11b5356f302c99917d12.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++; } |