diff options
author | Larry Ewing <lewing@ximian.com> | 2001-10-06 00:55:15 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2001-10-06 00:55:15 +0800 |
commit | 301815b5e307a83e49218e2e2aa5ce9971717bc0 (patch) | |
tree | 626dcfa27b4ff4904f0a285b971761c5a3daf43a /mail | |
parent | 6c4c4f91ec048440185966eccabb3e910ff0cd25 (diff) | |
download | gsoc2013-evolution-301815b5e307a83e49218e2e2aa5ce9971717bc0.tar gsoc2013-evolution-301815b5e307a83e49218e2e2aa5ce9971717bc0.tar.gz gsoc2013-evolution-301815b5e307a83e49218e2e2aa5ce9971717bc0.tar.bz2 gsoc2013-evolution-301815b5e307a83e49218e2e2aa5ce9971717bc0.tar.lz gsoc2013-evolution-301815b5e307a83e49218e2e2aa5ce9971717bc0.tar.xz gsoc2013-evolution-301815b5e307a83e49218e2e2aa5ce9971717bc0.tar.zst gsoc2013-evolution-301815b5e307a83e49218e2e2aa5ce9971717bc0.zip |
use e_msg_composer_new_with_message rather than e_msg_composer_new. This
2001-10-05 Larry Ewing <lewing@ximian.com>
* 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
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/mail-callbacks.c | 2 |
2 files changed, 8 insertions, 1 deletions
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 <lewing@ximian.com> + + * 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 <clahey@ximian.com> * 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; |