aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-17 02:26:50 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-21 10:52:36 +0800
commit74cdb40199a1a429861c11b5356f302c99917d12 (patch)
treeac3b02b555237497b3200588c2a94a45e5c028f8 /widgets/misc
parenta538f3f3100dbdbae1ea172ae3b8344e650d529d (diff)
downloadgsoc2013-evolution-74cdb40199a1a429861c11b5356f302c99917d12.tar
gsoc2013-evolution-74cdb40199a1a429861c11b5356f302c99917d12.tar.gz
gsoc2013-evolution-74cdb40199a1a429861c11b5356f302c99917d12.tar.bz2
gsoc2013-evolution-74cdb40199a1a429861c11b5356f302c99917d12.tar.lz
gsoc2013-evolution-74cdb40199a1a429861c11b5356f302c99917d12.tar.xz
gsoc2013-evolution-74cdb40199a1a429861c11b5356f302c99917d12.tar.zst
gsoc2013-evolution-74cdb40199a1a429861c11b5356f302c99917d12.zip
Bug 578478 – Composer shows not all "From" information
Diffstat (limited to 'widgets/misc')
-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++;
}