diff options
Diffstat (limited to 'gtk/gtknotebook.c')
-rw-r--r-- | gtk/gtknotebook.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 422bc75e97..ea7b12f549 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -1937,14 +1937,11 @@ gtk_notebook_leave_notify (GtkWidget *widget, GdkEventCrossing *event) { GtkNotebook *notebook = GTK_NOTEBOOK (widget); - GtkNotebookArrow arrow; gint x, y; if (!get_widget_coordinates (widget, (GdkEvent *)event, &x, &y)) return FALSE; - arrow = gtk_notebook_get_arrow (notebook, x, y); - if (notebook->in_child) { notebook->in_child = 0; @@ -3906,7 +3903,6 @@ gtk_notebook_switch_focus_tab (GtkNotebook *notebook, GList *new_child) { GList *old_child; - GtkNotebookPage *old_page = NULL; GtkNotebookPage *page; g_return_if_fail (GTK_IS_NOTEBOOK (notebook)); @@ -3923,9 +3919,6 @@ gtk_notebook_switch_focus_tab (GtkNotebook *notebook, if (!notebook->show_tabs || !notebook->focus_tab) return; - if (old_child) - old_page = old_child->data; - page = notebook->focus_tab->data; if (GTK_WIDGET_MAPPED (page->tab_label)) gtk_notebook_redraw_tabs (notebook); |