From 301815b5e307a83e49218e2e2aa5ce9971717bc0 Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Fri, 5 Oct 2001 16:55:15 +0000 Subject: use e_msg_composer_new_with_message rather than e_msg_composer_new. This 2001-10-05 Larry Ewing * mail-callbacks.c (mail_generate_reply): use e_msg_composer_new_with_message rather than e_msg_composer_new. This way we bring in all the attachment of the message we are replying to. svn path=/trunk/; revision=13444 --- mail/ChangeLog | 7 +++++++ mail/mail-callbacks.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index aabcb43384..0999fc9f0f 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2001-10-05 Larry Ewing + + * mail-callbacks.c (mail_generate_reply): use + e_msg_composer_new_with_message rather than e_msg_composer_new. + This way we bring in all the attachment of the message we are + replying to. + 2001-10-05 Christopher James Lahey * message-list.c (message_list_setup_etree): Turn on diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index 8fba1b50d8..56204d0161 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -772,7 +772,7 @@ mail_generate_reply (CamelFolder *folder, CamelMimeMessage *message, const char time_t date; const int max_subject_length = 1024; - composer = e_msg_composer_new (); + composer = e_msg_composer_new_with_message (message); if (!composer) return NULL; -- cgit