logo

badwolf

Minimalist and privacy-oriented WebKitGTK+ browser
commit: 6c37e90f6b49dbcbdce0cb3b4a522e6b17647d3d
parent: 3cf773a201f43573ad77876792f0a79843dfec27
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sat, 12 Oct 2019 06:47:05 +0200

s/web_contentCb_download_started/web_contextCb_download_started/

Diffstat:

Mbadwolf.c6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/badwolf.c b/badwolf.c @@ -42,7 +42,7 @@ static gboolean WebViewCb_decide_policy(WebKitWebView *web_view, WebKitPolicyDecision *decision, WebKitPolicyDecisionType decision_type, gpointer user_data); -static void web_contentCb_download_started(WebKitWebContext *context, +static void web_contextCb_download_started(WebKitWebContext *context, WebKitDownload *download, gpointer user_data); static gboolean downloadCb_decide_destination(WebKitDownload *download, @@ -353,7 +353,7 @@ WebViewCb_decide_policy(WebKitWebView *web_view, } static void -web_contentCb_download_started(WebKitWebContext *context, +web_contextCb_download_started(WebKitWebContext *context, WebKitDownload *download, gpointer user_data) { @@ -606,7 +606,7 @@ new_browser(struct Window *window, gchar *target_url, WebKitWebView *related_web /* signals for WebView's WebContext */ g_signal_connect(G_OBJECT(web_context), "download-started", - G_CALLBACK(web_contentCb_download_started), + G_CALLBACK(web_contextCb_download_started), browser); /* signals for search widget */