diff options
author | Larry Ewing <lewing@ximian.com> | 2001-10-16 04:40:59 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2001-10-16 04:40:59 +0800 |
commit | 4660c390a0d556797cac7e288718d6a0c0b481b8 (patch) | |
tree | e95fa561e590cb42dd3a9c1b293454dc2b014236 /mail/mail-callbacks.c | |
parent | f620356a6fc4a13fa805370c5d768082ebfba856 (diff) | |
download | gsoc2013-evolution-4660c390a0d556797cac7e288718d6a0c0b481b8.tar.gz gsoc2013-evolution-4660c390a0d556797cac7e288718d6a0c0b481b8.tar.zst gsoc2013-evolution-4660c390a0d556797cac7e288718d6a0c0b481b8.zip |
don't apply the body text in replys since we will just replace it anyway.
2001-10-15 Larry Ewing <lewing@ximian.com>
* mail-callbacks.c (mail_generate_reply): don't apply the body
text in replys since we will just replace it anyway.
svn path=/trunk/; revision=13683
Diffstat (limited to 'mail/mail-callbacks.c')
-rw-r--r-- | mail/mail-callbacks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index e50bcac040..b5cbe6c19e 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -822,7 +822,7 @@ mail_generate_reply (CamelFolder *folder, CamelMimeMessage *message, const char const int max_subject_length = 1024; composer = e_msg_composer_new (); - e_msg_composer_add_message_attachments (composer, message, TRUE); + e_msg_composer_add_message_attachments (composer, message, FALSE); if (!composer) return NULL; |