diff -r c4c5e0a670b1 -r ae6432ea326f pidgin/gtkdialogs.c --- a/pidgin/gtkdialogs.c Mon Feb 10 00:56:22 2014 +0530 +++ b/pidgin/gtkdialogs.c Mon Feb 10 01:40:39 2014 +0530 @@ -478,10 +478,10 @@ gtk_box_pack_start(GTK_BOX(vbox), logo, FALSE, FALSE, 0); frame = pidgin_create_webview(FALSE, &webview, NULL); - gtk_webview_set_format_functions(GTK_WEBVIEW(webview), GTK_WEBVIEW_ALL ^ GTK_WEBVIEW_SMILEY); + pidgin_webview_set_format_functions(PIDGIN_WEBVIEW(webview), PIDGIN_WEBVIEW_ALL ^ PIDGIN_WEBVIEW_SMILEY); gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0); - gtk_webview_append_html(GTK_WEBVIEW(webview), string->str); + pidgin_webview_append_html(PIDGIN_WEBVIEW(webview), string->str); button = pidgin_dialog_add_button(GTK_DIALOG(win), GTK_STOCK_CLOSE, G_CALLBACK(destroy_win), win);