Mercurial > pidgin
changeset 32421:3e82cdc85a45
webkit_web_view_load_html_string is superceded by webkit_web_view_load_string as of 1.1.1 (which we require)
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Sat, 31 Dec 2011 04:30:57 +0000 |
parents | 4039f92cc589 |
children | d729bc34a180 |
files | pidgin/gtkwebview.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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); }