# HG changeset patch # User Daniel Atallah # Date 1325305857 0 # Node ID 3e82cdc85a456932201867db018d216f28390dd1 # Parent 4039f92cc589f51c4d2a78c6831c4738ecc94731 webkit_web_view_load_html_string is superceded by webkit_web_view_load_string as of 1.1.1 (which we require) diff -r 4039f92cc589 -r 3e82cdc85a45 pidgin/gtkwebview.c --- 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); }