update for CamelStream changes.

* mail-format.c: update for CamelStream changes.

svn path=/trunk/; revision=2631
This commit is contained in:
Dan Winship
2000-04-26 14:40:43 +00:00
parent ec4ad73a58
commit b2ae704032
2 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2000-04-26 Dan Winship <danw@helixcode.com>
* mail-format.c: update for CamelStream changes.
2000-04-25 Dan Winship <danw@helixcode.com>
* mail-display.c, mail-format.c: Redo large chunks of this. The

View File

@ -203,7 +203,7 @@ icon_stream (char *path)
g_byte_array_append (ba, buf, nread);
}
close (fd);
return camel_stream_mem_new_with_byte_array (ba, CAMEL_STREAM_MEM_READ);
return camel_stream_mem_new_with_byte_array (ba);
}
static void
@ -734,7 +734,7 @@ handle_text_enriched (CamelMimePart *part, CamelMimeMessage *root, GtkBox *box)
mail_html_write (html, stream, "\n<!-- text/enriched -->\n");
ba = g_byte_array_new ();
memstream = camel_stream_mem_new_with_byte_array (ba, CAMEL_STREAM_MEM_WRITE);
memstream = camel_stream_mem_new_with_byte_array (ba);
camel_data_wrapper_write_to_stream (wrapper, memstream);
g_byte_array_append (ba, "", 1);
@ -1150,8 +1150,7 @@ handle_via_bonobo (CamelMimePart *part, CamelMimeMessage *root, GtkBox *box)
/* Write the data to a CamelStreamMem... */
ba = g_byte_array_new ();
cstream = camel_stream_mem_new_with_byte_array (
ba, CAMEL_STREAM_MEM_WRITE);
cstream = camel_stream_mem_new_with_byte_array (ba);
camel_data_wrapper_write_to_stream (wrapper, cstream);
/* ...convert the CamelStreamMem to a BonoboStreamMem... */
@ -1191,7 +1190,7 @@ get_data_wrapper_text (CamelDataWrapper *data)
char *text;
ba = g_byte_array_new ();
memstream = camel_stream_mem_new_with_byte_array (ba, CAMEL_STREAM_MEM_WRITE);
memstream = camel_stream_mem_new_with_byte_array (ba);
camel_data_wrapper_write_to_stream (data, memstream);
text = g_malloc (ba->len + 1);