aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-composer-utils.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-17 05:19:51 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-17 05:19:51 +0800
commit152d43ec92989b4a416c1fedf3ec133b48bee6ae (patch)
treebed9eebda32bd6afc132e533ec7901ca4fcfc2dc /mail/em-composer-utils.c
parentedb65e9547c1a11748e7388b379028dd4f1cede4 (diff)
downloadgsoc2013-evolution-152d43ec92989b4a416c1fedf3ec133b48bee6ae.tar
gsoc2013-evolution-152d43ec92989b4a416c1fedf3ec133b48bee6ae.tar.gz
gsoc2013-evolution-152d43ec92989b4a416c1fedf3ec133b48bee6ae.tar.bz2
gsoc2013-evolution-152d43ec92989b4a416c1fedf3ec133b48bee6ae.tar.lz
gsoc2013-evolution-152d43ec92989b4a416c1fedf3ec133b48bee6ae.tar.xz
gsoc2013-evolution-152d43ec92989b4a416c1fedf3ec133b48bee6ae.tar.zst
gsoc2013-evolution-152d43ec92989b4a416c1fedf3ec133b48bee6ae.zip
Bug 582744 – CC field autofill doesn't work for replies
Diffstat (limited to 'mail/em-composer-utils.c')
-rw-r--r--mail/em-composer-utils.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/em-composer-utils.c b/mail/em-composer-utils.c
index 2336f3c798..0f9945b7d7 100644
--- a/mail/em-composer-utils.c
+++ b/mail/em-composer-utils.c
@@ -1789,7 +1789,10 @@ reply_get_composer (CamelMimeMessage *message, EAccount *account,
e_composer_header_table_set_account (table, account);
e_composer_header_table_set_subject (table, subject);
e_composer_header_table_set_destinations_to (table, tov);
- e_composer_header_table_set_destinations_cc (table, ccv);
+
+ /* Add destinations instead of setting, so we don't remove
+ * automatic CC addresses that have already been added. */
+ e_composer_header_table_add_destinations_cc (table, ccv);
g_free (subject);