summaryrefslogtreecommitdiff
path: root/gtk/gtkcellrenderer.h
diff options
context:
space:
mode:
authorTim Janik <timj@src.gnome.org>2008-06-20 11:01:07 +0000
committerTim Janik <timj@src.gnome.org>2008-06-20 11:01:07 +0000
commit2bb1cc877dc477a2e3a630ac5272a493df4cbff4 (patch)
tree8c5de49963152de5c747220cf55c33a86cfcf3d9 /gtk/gtkcellrenderer.h
parentd0852ad65ce1bc06769164b8159a724ca8b6c9ef (diff)
downloadgtk+-2bb1cc877dc477a2e3a630ac5272a493df4cbff4.tar.gz
Seal GtkCellRenderer.
* gtk/gtkcellrenderer.h: seal all member fields. All member fields are already accessible via GObject properties. svn path=/trunk/; revision=20525
Diffstat (limited to 'gtk/gtkcellrenderer.h')
-rw-r--r--gtk/gtkcellrenderer.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/gtk/gtkcellrenderer.h b/gtk/gtkcellrenderer.h
index 06bc5c10a3..bcb021031b 100644
--- a/gtk/gtkcellrenderer.h
+++ b/gtk/gtkcellrenderer.h
@@ -61,22 +61,22 @@ struct _GtkCellRenderer
{
GtkObject parent;
- gfloat xalign;
- gfloat yalign;
-
- gint width;
- gint height;
-
- guint16 xpad;
- guint16 ypad;
-
- guint mode : 2;
- guint visible : 1;
- guint is_expander : 1;
- guint is_expanded : 1;
- guint cell_background_set : 1;
- guint sensitive : 1;
- guint editing : 1;
+ gfloat GSEAL (xalign);
+ gfloat GSEAL (yalign);
+
+ gint GSEAL (width);
+ gint GSEAL (height);
+
+ guint16 GSEAL (xpad);
+ guint16 GSEAL (ypad);
+
+ guint GSEAL (mode : 2);
+ guint GSEAL (visible : 1);
+ guint GSEAL (is_expander : 1);
+ guint GSEAL (is_expanded : 1);
+ guint GSEAL (cell_background_set : 1);
+ guint GSEAL (sensitive : 1);
+ guint GSEAL (editing : 1);
};
struct _GtkCellRendererClass