Seal GtkCellRenderer.

* gtk/gtkcellrenderer.h: seal all member fields.  All member fields are
already accessible via GObject properties.

svn path=/trunk/; revision=20525
This commit is contained in:
Tim Janik
2008-06-20 11:01:07 +00:00
parent d0852ad65c
commit 2bb1cc877d

View File

@ -61,22 +61,22 @@ struct _GtkCellRenderer
{ {
GtkObject parent; GtkObject parent;
gfloat xalign; gfloat GSEAL (xalign);
gfloat yalign; gfloat GSEAL (yalign);
gint width; gint GSEAL (width);
gint height; gint GSEAL (height);
guint16 xpad; guint16 GSEAL (xpad);
guint16 ypad; guint16 GSEAL (ypad);
guint mode : 2; guint GSEAL (mode : 2);
guint visible : 1; guint GSEAL (visible : 1);
guint is_expander : 1; guint GSEAL (is_expander : 1);
guint is_expanded : 1; guint GSEAL (is_expanded : 1);
guint cell_background_set : 1; guint GSEAL (cell_background_set : 1);
guint sensitive : 1; guint GSEAL (sensitive : 1);
guint editing : 1; guint GSEAL (editing : 1);
}; };
struct _GtkCellRendererClass struct _GtkCellRendererClass