aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-17 02:26:50 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-17 02:26:50 +0800
commite8a2bad7ec6be90bdf75f7bdcf12c24e15b620af (patch)
tree38400a7eda90052e6d8cfa698495a9b8c59cf688
parente4fa8fe10408c4c370e1e11e4bb2d7745f50aceb (diff)
downloadgsoc2013-evolution-e8a2bad7ec6be90bdf75f7bdcf12c24e15b620af.tar
gsoc2013-evolution-e8a2bad7ec6be90bdf75f7bdcf12c24e15b620af.tar.gz
gsoc2013-evolution-e8a2bad7ec6be90bdf75f7bdcf12c24e15b620af.tar.bz2
gsoc2013-evolution-e8a2bad7ec6be90bdf75f7bdcf12c24e15b620af.tar.lz
gsoc2013-evolution-e8a2bad7ec6be90bdf75f7bdcf12c24e15b620af.tar.xz
gsoc2013-evolution-e8a2bad7ec6be90bdf75f7bdcf12c24e15b620af.tar.zst
gsoc2013-evolution-e8a2bad7ec6be90bdf75f7bdcf12c24e15b620af.zip
Bug 578478 – Composer shows not all "From" information
-rw-r--r--widgets/misc/e-account-combo-box.c2
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++;
}