diff options
-rw-r--r-- | src/tab.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); } |