diff options
Diffstat (limited to 'gtk/gtknotebook.c')
-rw-r--r-- | gtk/gtknotebook.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index f8f30549d2..b3a2210ca0 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -19,7 +19,6 @@ #include "gtknotebook.h" #include "gtksignal.h" #include "gtkmain.h" -#include "gtkprivate.h" #include "gtkmenu.h" #include "gtkmenuitem.h" #include "gtklabel.h" @@ -1837,7 +1836,7 @@ gtk_notebook_timer (GtkNotebook *notebook) { gboolean retval = FALSE; - GTK_THREADS_ENTER (); + GDK_THREADS_ENTER (); if (notebook->timer) { @@ -1866,7 +1865,7 @@ gtk_notebook_timer (GtkNotebook *notebook) retval = TRUE; } - GTK_THREADS_LEAVE (); + GDK_THREADS_LEAVE (); return retval; } |