From ed884a132a2d91ea082e02ac7254a178e8eb359c Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Fri, 20 Jun 2008 11:07:29 +0000 Subject: [PATCH] Seal GtkTable. svn path=/trunk/; revision=20596 --- gtk/gtktable.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gtk/gtktable.h b/gtk/gtktable.h index e7ff9b01d2..85dc0bac4e 100644 --- a/gtk/gtktable.h +++ b/gtk/gtktable.h @@ -55,14 +55,14 @@ struct _GtkTable { GtkContainer container; - GList *children; - GtkTableRowCol *rows; - GtkTableRowCol *cols; - guint16 nrows; - guint16 ncols; - guint16 column_spacing; - guint16 row_spacing; - guint homogeneous : 1; + GList *GSEAL (children); + GtkTableRowCol *GSEAL (rows); + GtkTableRowCol *GSEAL (cols); + guint16 GSEAL (nrows); + guint16 GSEAL (ncols); + guint16 GSEAL (column_spacing); + guint16 GSEAL (row_spacing); + guint GSEAL (homogeneous : 1); }; struct _GtkTableClass