From bed8e97cd73a90015b33826a6f543fb190204609 Mon Sep 17 00:00:00 2001 From: Bharath Acharya Date: Mon, 18 Oct 2010 10:36:17 +0530 Subject: Bug #604981 - Always bcc ignored for Contacts. Add the Bcc destinations instead of setting it. --- modules/addressbook/eab-composer-util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules') 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); -- cgit