aboutsummaryrefslogtreecommitdiffstats
path: root/composer/listener.c
diff options
context:
space:
mode:
authorRadek Doulik <rodo@helixcode.com>2000-11-08 21:06:58 +0800
committerRadek Doulik <rodo@src.gnome.org>2000-11-08 21:06:58 +0800
commitf3ec28d123a08e6e3b6b5667665dfb4bcb700346 (patch)
treec84f99f204d24615ebd01ba107c815a66ecbf1a0 /composer/listener.c
parent413284362ffbc5185e72dd2e246ba88f912ffbdb (diff)
downloadgsoc2013-evolution-f3ec28d123a08e6e3b6b5667665dfb4bcb700346.tar
gsoc2013-evolution-f3ec28d123a08e6e3b6b5667665dfb4bcb700346.tar.gz
gsoc2013-evolution-f3ec28d123a08e6e3b6b5667665dfb4bcb700346.tar.bz2
gsoc2013-evolution-f3ec28d123a08e6e3b6b5667665dfb4bcb700346.tar.lz
gsoc2013-evolution-f3ec28d123a08e6e3b6b5667665dfb4bcb700346.tar.xz
gsoc2013-evolution-f3ec28d123a08e6e3b6b5667665dfb4bcb700346.tar.zst
gsoc2013-evolution-f3ec28d123a08e6e3b6b5667665dfb4bcb700346.zip
new function (destroy): use e_msg_composer_clear_inlined_table, destroy
2000-11-08 Radek Doulik <rodo@helixcode.com> * e-msg-composer.c (e_msg_composer_clear_inlined_table): new function (destroy): use e_msg_composer_clear_inlined_table, destroy inlined_images hash table * listener.c (resolve_image_url): don't add inlined images to attachement bar * e-msg-composer.c (add_inlined_images): new function, adds inlined images to multipart (add_inlined_image): helper function, adds one image to multipart (build_message): store HTML messages with inlined images to multipart/related * e-msg-composer-attachment-bar.c (add_from_file): removed content_id arg (e_msg_composer_attachment_bar_attach): likewise * e-msg-composer-attachment.c (e_msg_composer_attachment_new): removed content_id arg svn path=/trunk/; revision=6507
Diffstat (limited to 'composer/listener.c')
-rw-r--r--composer/listener.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/composer/listener.c b/composer/listener.c
index 3b90e7200f..6d62d49476 100644
--- a/composer/listener.c
+++ b/composer/listener.c
@@ -56,8 +56,6 @@ resolve_image_url (HTMLEditorListener *l, gchar *url)
id = (gchar *) g_hash_table_lookup (l->composer->inline_images, url + 5);
if (!id) {
id = header_msgid_generate ();
- e_msg_composer_attachment_bar_attach (E_MSG_COMPOSER_ATTACHMENT_BAR (l->composer->attachment_bar),
- url + 5, id);
g_hash_table_insert (l->composer->inline_images, g_strdup (url + 5), id);
}
cid = g_strconcat ("cid:", id, NULL);