diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-05-21 17:18:20 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-05-21 17:18:20 +0800 |
commit | 0a232b36bf48cd8493e455466e7cdbfd96d7aa7f (patch) | |
tree | ebc3f3ca60f873e39124228be43f0416b7c6c204 /mail/mail-config.c | |
parent | 4eb47f9a4696877218bf05d53c52f829d2afcdd5 (diff) | |
download | gsoc2013-evolution-0a232b36bf48cd8493e455466e7cdbfd96d7aa7f.tar.gz gsoc2013-evolution-0a232b36bf48cd8493e455466e7cdbfd96d7aa7f.tar.zst gsoc2013-evolution-0a232b36bf48cd8493e455466e7cdbfd96d7aa7f.zip |
Updated for the GtkHTML API changes. Also fixed some compiler
warnings here and there.
svn path=/trunk/; revision=3145
Diffstat (limited to 'mail/mail-config.c')
-rw-r--r-- | mail/mail-config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-config.c b/mail/mail-config.c index a59af5dde6..513e7e66b0 100644 --- a/mail/mail-config.c +++ b/mail/mail-config.c @@ -96,10 +96,10 @@ html_new (gboolean white) static void put_html (GtkHTML *html, char *text) { - GtkHTMLStreamHandle *handle; + GtkHTMLStream *handle; text = e_text_to_html (text, E_TEXT_TO_HTML_CONVERT_NL); - handle = gtk_html_begin (html, ""); + handle = gtk_html_begin (html); gtk_html_write (html, handle, "<HTML><BODY>", 12); gtk_html_write (html, handle, text, strlen (text)); gtk_html_write (html, handle, "</BODY></HTML>", 14); |