diff options
author | rbuj <[email protected]> | 2020-06-29 18:06:33 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-07-08 16:50:57 +0200 |
commit | 90f0f5c59768a3eee3f9529695f68cd45a9e5844 (patch) | |
tree | 45bf27cec0fb0f72fe61a776df7f38008eafadd8 /capplets/keyboard | |
parent | 0657cd03d2cfbeb09164db42f85bd5d2329919ff (diff) | |
download | mate-control-center-90f0f5c59768a3eee3f9529695f68cd45a9e5844.tar.bz2 mate-control-center-90f0f5c59768a3eee3f9529695f68cd45a9e5844.tar.xz |
Remove unused variable from capplet_notebook_scroll_event_cb
Diffstat (limited to 'capplets/keyboard')
-rw-r--r-- | capplets/keyboard/mate-keyboard-properties.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/capplets/keyboard/mate-keyboard-properties.c b/capplets/keyboard/mate-keyboard-properties.c index bc02a3bc..cf2ef62f 100644 --- a/capplets/keyboard/mate-keyboard-properties.c +++ b/capplets/keyboard/mate-keyboard-properties.c @@ -245,9 +245,10 @@ main (int argc, char **argv) GtkNotebook* nb = GTK_NOTEBOOK (WID ("keyboard_notebook")); gtk_widget_add_events (GTK_WIDGET (nb), GDK_SCROLL_MASK); - g_signal_connect (GTK_WIDGET (nb), "scroll-event", - G_CALLBACK (capplet_dialog_page_scroll_event_cb), - GTK_WINDOW (WID ("keyboard_dialog"))); + g_signal_connect (GTK_WIDGET (nb), + "scroll-event", + G_CALLBACK (capplet_notebook_scroll_event_cb), + NULL); if (switch_to_typing_break_page) { gtk_notebook_set_current_page (nb, 4); |