Bug 589205 – help-browser uses deprecated (and sometimes broken) webkit call

Use webkit_web_view_load_uri() instead of webkit_web_view_open().
This commit is contained in:
Sven Neumann 2009-07-21 22:42:47 +02:00
parent cabcc592f0
commit 87f25f29d8

View file

@ -331,7 +331,7 @@ browser_dialog_load (const gchar *uri)
{
g_return_if_fail (uri != NULL);
webkit_web_view_open (WEBKIT_WEB_VIEW (view), uri);
webkit_web_view_load_uri (WEBKIT_WEB_VIEW (view), uri);
select_index (uri);