diff options
author | Not Zed <NotZed@Ximian.com> | 2004-04-13 15:50:59 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-04-13 15:50:59 +0800 |
commit | f8574c815f3f2fe2c253d75d4a2dff8933aec545 (patch) | |
tree | a645c71b801df92d5d04775b6d2164ee7939c561 /mail/em-utils.c | |
parent | 1dfdac328cf8fd46042513dc9950cedb130f4593 (diff) | |
download | gsoc2013-evolution-f8574c815f3f2fe2c253d75d4a2dff8933aec545.tar.gz gsoc2013-evolution-f8574c815f3f2fe2c253d75d4a2dff8933aec545.tar.zst gsoc2013-evolution-f8574c815f3f2fe2c253d75d4a2dff8933aec545.zip |
use %% for %%.
2004-04-13 Not Zed <NotZed@Ximian.com>
* em-format-html.c (efh_format_headers): use %% for %%.
* em-folder-view.c (emfv_init, emfv_finalise, emfv_activate):
revert dans' creatable items handler patch, moved to
mail-component instead (which deals with the actual menu's).
* mail-component.c (impl_createControls): setup a user creatable
items handler on the view widget.
(view_control_activate_cb): activate the user creatable items
handler on the view widget.
* em-folder-view.c (emfv_init): add a comment about jeff's last
fix.
* em-utils.c (forward_non_attached): Set attachments from
forwardee before we set the body, otherwise images wont resolve
properly. Related to #56566.
svn path=/trunk/; revision=25428
Diffstat (limited to 'mail/em-utils.c')
-rw-r--r-- | mail/em-utils.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c index 1225604bd7..5f6236f1cc 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -538,12 +538,13 @@ forward_non_attached (GPtrArray *messages, int style) if (text) { composer = create_new_composer (); e_msg_composer_set_headers (composer, NULL, NULL, NULL, NULL, subject); - e_msg_composer_set_body_text (composer, text); - + wrapper = camel_medium_get_content_object (CAMEL_MEDIUM (message)); if (CAMEL_IS_MULTIPART (wrapper)) e_msg_composer_add_message_attachments (composer, message, FALSE); - + + e_msg_composer_set_body_text (composer, text); + e_msg_composer_unset_changed (composer); e_msg_composer_drop_editor_undo (composer); |