From ebdc9e8221dde765272a4927060f606fec39a7c8 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Fri, 20 Jun 2008 11:04:18 +0000 Subject: [PATCH] Sealed remaining (private) fields in GtkContainer. svn path=/trunk/; revision=20560 --- gtk/gtkcontainer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk/gtkcontainer.h b/gtk/gtkcontainer.h index 0cc6a2db6d..e7c2ff38bc 100644 --- a/gtk/gtkcontainer.h +++ b/gtk/gtkcontainer.h @@ -62,10 +62,10 @@ struct _GtkContainer guint GSEAL (border_width : 16); /*< private >*/ - guint need_resize : 1; - guint resize_mode : 2; - guint reallocate_redraws : 1; - guint has_focus_chain : 1; + guint GSEAL (need_resize : 1); + guint GSEAL (resize_mode : 2); + guint GSEAL (reallocate_redraws : 1); + guint GSEAL (has_focus_chain : 1); }; struct _GtkContainerClass