From: Matthias Clasen Date: Sat, 23 Jun 2012 17:07:47 +0000 (-0400) Subject: Fix a compiler warning X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1^2~18^2~24^2~19712 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=cea4b80096526a6e878e0752ea302e73f32b0551;p=gtk4.git Fix a compiler warning This was introduced in the previous commit. --- diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index cf077c8e79..54c079d2da 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -4149,7 +4149,7 @@ focus_tabs_in (GtkNotebook *notebook) if (priv->show_tabs && priv->cur_page) { gtk_widget_grab_focus (GTK_WIDGET (notebook)); - gtk_notebook_set_focus_child (notebook, NULL); + gtk_notebook_set_focus_child (GTK_CONTAINER (notebook), NULL); gtk_notebook_switch_focus_tab (notebook, g_list_find (priv->children, priv->cur_page));