From 8cfd7bff52ffab2b97899756db08200c2b5c4fe4 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Tue, 17 Oct 2017 21:59:42 -0400 Subject: MqTab: Use previously unused static function argument --- (limited to 'src') diff --git a/src/tab.c b/src/tab.c index 626424a..1efe0e5 100644 --- a/src/tab.c +++ b/src/tab.c @@ -80,10 +80,10 @@ append_sibling(MqTab *new_node, MqTab *prev_sibling) } static void -title_cb(WebKitWebView G_GNUC_UNUSED *web_view, - GParamSpec G_GNUC_UNUSED *param_spec, MqTab *tab) +title_cb(WebKitWebView *web_view, GParamSpec G_GNUC_UNUSED *param_spec, + MqTab *tab) { - tab->title = webkit_web_view_get_title(tab->web_view); + tab->title = webkit_web_view_get_title(web_view); mq_window_update_tab_title(tab->window, tab->position, tab->title); } -- cgit v0.9.1