From 6c7daaf8b9b1aa425d02f890b4708c8a63b79a8c Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 28 Sep 2010 18:24:34 +0200 Subject: [PATCH] notebook: Fix compilation warnings - missing cast --- gtk/gtknotebook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index c5b880c0f1..e510b4eded 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -4529,7 +4529,7 @@ gtk_notebook_real_remove (GtkNotebook *notebook, GtkWidget *tab_label; gboolean destroying; - destroying = gtk_widget_in_destruction (notebook); + destroying = gtk_widget_in_destruction (GTK_WIDGET (notebook)); next_list = gtk_notebook_search_page (notebook, list, STEP_NEXT, TRUE); if (!next_list)