[hackers] [surf] fix download/history bug || Enno Boland (tox)

From: <hg_AT_suckless.org>
Date: Tue, 11 May 2010 12:56:54 +0000 (UTC)

changeset: 201:f844afd7a2b6
parent: 199:c62bc5ee120f
user: Enno Boland (tox) <tox_AT_s01.de>
date: Tue May 11 14:57:09 2010 +0200
files: surf.c
description:
fix download/history bug

diff -r c62bc5ee120f -r f844afd7a2b6 surf.c
--- a/surf.c Sun May 09 22:46:22 2010 +0200
+++ b/surf.c Tue May 11 14:57:09 2010 +0200
@@ -372,8 +372,6 @@
 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 @@
         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);
         
Received on Tue May 11 2010 - 12:56:54 UTC

This archive was generated by hypermail 2.2.0 : Tue May 11 2010 - 13:00:09 UTC