diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-08-26 05:03:47 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-08-26 05:03:47 +0800 |
commit | 5ba76c10796e49a6b12bdc7ee7f0a5da4a173e62 (patch) | |
tree | 860b52fcb5fc0496e308d8c8561fdf936a53473c /composer/e-msg-composer-attachment.c | |
parent | e74d9ca1cc1bd40982341aa85600fbc0b4f31824 (diff) | |
download | gsoc2013-evolution-5ba76c10796e49a6b12bdc7ee7f0a5da4a173e62.tar gsoc2013-evolution-5ba76c10796e49a6b12bdc7ee7f0a5da4a173e62.tar.gz gsoc2013-evolution-5ba76c10796e49a6b12bdc7ee7f0a5da4a173e62.tar.bz2 gsoc2013-evolution-5ba76c10796e49a6b12bdc7ee7f0a5da4a173e62.tar.lz gsoc2013-evolution-5ba76c10796e49a6b12bdc7ee7f0a5da4a173e62.tar.xz gsoc2013-evolution-5ba76c10796e49a6b12bdc7ee7f0a5da4a173e62.tar.zst gsoc2013-evolution-5ba76c10796e49a6b12bdc7ee7f0a5da4a173e62.zip |
updated for namespace changed made to camel-mime-utils.[c,h]
2003-08-25 Jeffrey Stedfast <fejj@ximian.com>
* e-msg-composer-attachment-bar.c: updated for namespace changed
made to camel-mime-utils.[c,h]
* e-msg-composer-attachment.c: updated for namespace changed made
to camel-mime-utils.[c,h]
* e-msg-composer.c: updated for namespace changed made to
camel-mime-utils.[c,h]
svn path=/trunk/; revision=22356
Diffstat (limited to 'composer/e-msg-composer-attachment.c')
-rw-r--r-- | composer/e-msg-composer-attachment.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/composer/e-msg-composer-attachment.c b/composer/e-msg-composer-attachment.c index fb7fe46073..5942b51340 100644 --- a/composer/e-msg-composer-attachment.c +++ b/composer/e-msg-composer-attachment.c @@ -220,7 +220,7 @@ e_msg_composer_attachment_new (const char *file_name, workaround, don't set a Content-Id on these parts. Fixes bug #10032 */ /* set the Content-Id */ - content_id = header_msgid_generate (); + content_id = camel_header_msgid_generate (); camel_mime_part_set_content_id (part, content_id); g_free (content_id); #endif @@ -430,7 +430,7 @@ e_msg_composer_attachment_edit (EMsgComposerAttachment *attachment, GtkWidget *p set_entry (editor_gui, "description_entry", camel_mime_part_get_description (attachment->body)); content_type = camel_mime_part_get_content_type (attachment->body); - type = header_content_type_simple (content_type); + type = camel_content_type_simple (content_type); set_entry (editor_gui, "mime_type_entry", type); g_free (type); |