From 204e08f87074268e93e0ad5d04a1bb5764a0c91c Mon Sep 17 00:00:00 2001 From: Matthew Loper Date: Mon, 14 Feb 2000 00:27:01 +0000 Subject: + * tests/ui-tests/message-browser.c (handle_tree_item): Expand tree + items. + (mime_message_to_html): New function; translates a + CamelMimeMessage into two strings (one for the header, and one for + the body). + (get_gtk_html_window): New function; fills out a window with + html. The html is taken from a processed rfc822 file, via a + CamelFormatter. + + * camel/camel-formatter.c: Added assertions. + (handle_text_html): Don't call text_to_html on something that's + already html. + (multipart_foreach): function deleted. + + * mail/html-stream.c (html_stream_new): Second param of + gtk_html_begin should be "", not NULL. + (html_stream_new): gtk_html_parse() is deprecated, so the call was + removed. svn path=/trunk/; revision=1766 --- mail/html-stream.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'mail/html-stream.c') diff --git a/mail/html-stream.c b/mail/html-stream.c index 927f8f3593..d3028dcdcd 100644 --- a/mail/html-stream.c +++ b/mail/html-stream.c @@ -103,8 +103,7 @@ html_stream_new (GtkHTML *html) gtk_object_ref (GTK_OBJECT (html)); - html_stream->gtk_html_stream = gtk_html_begin (html, NULL); - gtk_html_parse (html); + html_stream->gtk_html_stream = gtk_html_begin (html, ""); html_stream->gtk_html = html; -- cgit v1.2.3