webkit_web_view_load_html_string is superceded by webkit_web_view_load_string as of 1.1.1 (which we require)

Sat, 31 Dec 2011 04:30:57 +0000

author
Daniel Atallah <datallah@pidgin.im>
date
Sat, 31 Dec 2011 04:30:57 +0000
changeset 32774
94ca0baf8db0
parent 32773
6700409ec3a3
child 32775
33128730fa36

webkit_web_view_load_html_string is superceded by webkit_web_view_load_string as of 1.1.1 (which we require)

pidgin/gtkwebview.c file | annotate | diff | comparison | revisions
--- a/pidgin/gtkwebview.c	Wed Dec 28 05:07:15 2011 +0000
+++ b/pidgin/gtkwebview.c	Sat Dec 31 04:30:57 2011 +0000
@@ -271,7 +271,7 @@
 
 	clear_images(view);
 	html_imged = replace_img_id_with_src(view, html);
-	webkit_web_view_load_html_string(WEBKIT_WEB_VIEW(view), html_imged, "file:///");
+	webkit_web_view_load_string(WEBKIT_WEB_VIEW(view), html_imged, NULL, NULL, "file:///");
 	g_free(html_imged);
 }
 

mercurial