merge
authorEnno Boland (tox) <tox@s01.de>
Tue, 11 May 2010 12:57:44 +0000 (14:57 +0200)
committerEnno Boland (tox) <tox@s01.de>
Tue, 11 May 2010 12:57:44 +0000 (14:57 +0200)
1  2 
surf.c

diff --combined surf.c
--- 1/surf.c
--- 2/surf.c
+++ b/surf.c
@@@ -372,6 -372,8 +372,6 @@@ gboolea
  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);
        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);
        
@@@ -579,7 -584,7 +579,7 @@@ newclient(void) 
        g_free(uri);
        setatom(c, findprop, "");
        setatom(c, uriprop, "");
-       if(!NOBACKGROUND)
+       if(NOBACKGROUND)
                webkit_web_view_set_transparent(c->view, TRUE);
  
        c->download = NULL;