Sat, 31 Dec 2011 04:30:57 +0000
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); }