Seal GtkTable.

svn path=/trunk/; revision=20596
This commit is contained in:
Tim Janik
2008-06-20 11:07:29 +00:00
parent 3378ee8ace
commit ed884a132a

View File

@ -55,14 +55,14 @@ struct _GtkTable
{ {
GtkContainer container; GtkContainer container;
GList *children; GList *GSEAL (children);
GtkTableRowCol *rows; GtkTableRowCol *GSEAL (rows);
GtkTableRowCol *cols; GtkTableRowCol *GSEAL (cols);
guint16 nrows; guint16 GSEAL (nrows);
guint16 ncols; guint16 GSEAL (ncols);
guint16 column_spacing; guint16 GSEAL (column_spacing);
guint16 row_spacing; guint16 GSEAL (row_spacing);
guint homogeneous : 1; guint GSEAL (homogeneous : 1);
}; };
struct _GtkTableClass struct _GtkTableClass