summaryrefslogtreecommitdiffstats
path: root/gtk/src
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2009-06-17 16:54:43 +0000
committerjstebbins <[email protected]>2009-06-17 16:54:43 +0000
commit75ae8a367e7e6cc000677fd7fb8408d3f8cb7388 (patch)
tree02a6f4512d2bee327f8a4dc20538755f1dd93e46 /gtk/src
parentd91db83b70cc62ae6655183d8526494ed3411d58 (diff)
LinGui: ubuntu 9.04 uses an older version of webkit that doesn't have
the webkit_web_view_load_uri function. So use the depricated webkit_web_view_open instead. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2553 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src')
-rw-r--r--gtk/src/callbacks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c
index 487e89fb5..09a213e57 100644
--- a/gtk/src/callbacks.c
+++ b/gtk/src/callbacks.c
@@ -3469,7 +3469,7 @@ process_appcast(signal_user_data_t *ud)
}
#endif
dialog = GHB_WIDGET(ud->builder, "update_dialog");
- webkit_web_view_load_uri(WEBKIT_WEB_VIEW(html), description);
+ webkit_web_view_open(WEBKIT_WEB_VIEW(html), description);
response = gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_hide(dialog);
if (response == GTK_RESPONSE_OK)