X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=surf.c;h=c46e559f4a610028b8028d365724ed9b6d1c3d9e;hb=91d04b15f0bb16d5b31ad92ea1e6a0066e589956;hp=eabaf17043970cef71fee0ea7adcca6d4e88ff3b;hpb=424936e96c375bbfc0c624ea213112520c71534f;p=surf.git diff --git a/surf.c b/surf.c index eabaf17..c46e559 100644 --- a/surf.c +++ b/surf.c @@ -372,8 +372,6 @@ gboolean initdownload(WebKitWebView *view, WebKitDownload *o, Client *c) { const char *filename; char *uri; - WebKitWebBackForwardList *h; - WebKitWebHistoryItem *i; c->download = o; filename = webkit_download_get_suggested_filename(o); @@ -382,9 +380,6 @@ initdownload(WebKitWebView *view, WebKitDownload *o, Client *c) { uri = g_strconcat("file://", dldir, "/", filename, NULL); webkit_download_set_destination_uri(c->download, uri); c->progress = 0; - h = webkit_web_view_get_back_forward_list(c->view); - i = webkit_web_history_item_new_with_data(webkit_download_get_uri(c->download), filename); - webkit_web_back_forward_list_add_item(h, i); g_signal_connect(c->download, "notify::progress", G_CALLBACK(updatedownload), c); g_signal_connect(c->download, "notify::status", G_CALLBACK(updatedownload), c);