OSDN Git Service

LinGui: ubuntu 9.04 uses an older version of webkit that doesn't have
authorjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Wed, 17 Jun 2009 16:54:43 +0000 (16:54 +0000)
committerjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Wed, 17 Jun 2009 16:54:43 +0000 (16:54 +0000)
the webkit_web_view_load_uri function.  So use the depricated
webkit_web_view_open instead.

git-svn-id: svn://localhost/HandBrake/trunk@2553 b64f7644-9d1e-0410-96f1-a4d463321fa5

gtk/src/callbacks.c

index 487e89f..09a213e 100644 (file)
@@ -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)