diff options
author | Larry Ewing <lewing@ximian.com> | 2001-10-06 00:57:01 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2001-10-06 00:57:01 +0800 |
commit | a1750a292eb31a113a22c0278fb6517d56f78f75 (patch) | |
tree | f57113886943ed069664c79914e8ae1533cc1788 /composer/e-msg-composer-attachment-bar.h | |
parent | 301815b5e307a83e49218e2e2aa5ce9971717bc0 (diff) | |
download | gsoc2013-evolution-a1750a292eb31a113a22c0278fb6517d56f78f75.tar.gz gsoc2013-evolution-a1750a292eb31a113a22c0278fb6517d56f78f75.tar.zst gsoc2013-evolution-a1750a292eb31a113a22c0278fb6517d56f78f75.zip |
remove unused variable.
2001-10-05 Larry Ewing <lewing@ximian.com>
* e-msg-composer-attachment.c (e_msg_composer_attachment_new):
remove unused variable.
* e-msg-composer-attachment-bar.c
(e_msg_composer_attachment_bar_find_message): generalize this to
lookup content locations as well.
* e-msg-composer-attachment-bar.h: change prototype to match the
new function.
* listener.c (impl_event): handle the url_requested event, look up
parts in the attachment part and feed them down the stream if it
is found.
* e-msg-composer.c (handle_multipart_alternative): delay setting
the body text.
(handle_multipart): delay setting body text
(e_msg_composer_new_with_message): set the body text from the
object data. Doing this ensures that we will have the attachments
processed before we try to look them up.
svn path=/trunk/; revision=13445
Diffstat (limited to 'composer/e-msg-composer-attachment-bar.h')
-rw-r--r-- | composer/e-msg-composer-attachment-bar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/composer/e-msg-composer-attachment-bar.h b/composer/e-msg-composer-attachment-bar.h index 658e29108d..3dfe87ad80 100644 --- a/composer/e-msg-composer-attachment-bar.h +++ b/composer/e-msg-composer-attachment-bar.h @@ -68,8 +68,8 @@ void e_msg_composer_attachment_bar_to_multipart (EMsgComposerAttachmentBar *bar, guint e_msg_composer_attachment_bar_get_num_attachments (EMsgComposerAttachmentBar *bar); void e_msg_composer_attachment_bar_attach (EMsgComposerAttachmentBar *bar, const gchar *file_name); void e_msg_composer_attachment_bar_attach_mime_part (EMsgComposerAttachmentBar *bar, CamelMimePart *part); -CamelMimePart *e_msg_composer_attachment_bar_find_content_id (EMsgComposerAttachmentBar *bar, - char *content_id); +CamelMimePart *e_msg_composer_attachment_bar_find_message (EMsgComposerAttachmentBar *bar, + char *url); #ifdef __cplusplus } |