aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBharath Acharya <abharath@novell.com>2010-10-18 13:22:05 +0800
committerBharath Acharya <abharath@novell.com>2010-10-18 13:22:05 +0800
commit8ad4c012d2d78240ef26f31bca976f900c7dcbe7 (patch)
tree7c9b0ff5edaea19867e9d6e9511b70dadd95918a
parent6c5308ed48c4800e640cf5b13e07aca83dde7ae8 (diff)
downloadgsoc2013-evolution-8ad4c012d2d78240ef26f31bca976f900c7dcbe7.tar
gsoc2013-evolution-8ad4c012d2d78240ef26f31bca976f900c7dcbe7.tar.gz
gsoc2013-evolution-8ad4c012d2d78240ef26f31bca976f900c7dcbe7.tar.bz2
gsoc2013-evolution-8ad4c012d2d78240ef26f31bca976f900c7dcbe7.tar.lz
gsoc2013-evolution-8ad4c012d2d78240ef26f31bca976f900c7dcbe7.tar.xz
gsoc2013-evolution-8ad4c012d2d78240ef26f31bca976f900c7dcbe7.tar.zst
gsoc2013-evolution-8ad4c012d2d78240ef26f31bca976f900c7dcbe7.zip
Bug #604981 - Always bcc ignored for Contacts.
Add the Bcc destinations instead of setting it.
-rw-r--r--modules/addressbook/eab-composer-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/addressbook/eab-composer-util.c b/modules/addressbook/eab-composer-util.c
index 542e423d4d..a7237eb094 100644
--- a/modules/addressbook/eab-composer-util.c
+++ b/modules/addressbook/eab-composer-util.c
@@ -75,7 +75,7 @@ eab_send_as_to (EShell *shell,
* arrays are really the best argument type for passing a list of
* destinations to the header table. */
- /* Add "To" destinations. */
+ /* Set "To" destinations. */
convert.pdata = to_array->pdata;
e_composer_header_table_set_destinations_to (
table, convert.destinations);
@@ -83,7 +83,7 @@ eab_send_as_to (EShell *shell,
/* Add "Bcc" destinations. */
convert.pdata = bcc_array->pdata;
- e_composer_header_table_set_destinations_bcc (
+ e_composer_header_table_add_destinations_bcc (
table, convert.destinations);
g_ptr_array_free (bcc_array, FALSE);