summaryrefslogtreecommitdiff
path: root/gtk/gtkcellrenderertext.h
diff options
context:
space:
mode:
authorTim Janik <timj@src.gnome.org>2008-06-20 11:00:57 +0000
committerTim Janik <timj@src.gnome.org>2008-06-20 11:00:57 +0000
commita734a9bca1200164e9db6249a282f5a6fab96976 (patch)
tree86a1d40419b22cde2990edbb4f94e6cdfa0a228f /gtk/gtkcellrenderertext.h
parent50659b66dc0bac24e42e7e6d9883f958e518ce14 (diff)
downloadgtk+-a734a9bca1200164e9db6249a282f5a6fab96976.tar.gz
Seal GtkCellRendererText.
* gtk/gtkcellrenderertext.h: seal all member fields (all of them were already marked as private). svn path=/trunk/; revision=20523
Diffstat (limited to 'gtk/gtkcellrenderertext.h')
-rw-r--r--gtk/gtkcellrenderertext.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/gtk/gtkcellrenderertext.h b/gtk/gtkcellrenderertext.h
index b5a34ba1fb..0d37552470 100644
--- a/gtk/gtkcellrenderertext.h
+++ b/gtk/gtkcellrenderertext.h
@@ -46,36 +46,36 @@ struct _GtkCellRendererText
GtkCellRenderer parent;
/*< private >*/
- gchar *text;
- PangoFontDescription *font;
- gdouble font_scale;
- PangoColor foreground;
- PangoColor background;
+ gchar *GSEAL (text);
+ PangoFontDescription *GSEAL (font);
+ gdouble GSEAL (font_scale);
+ PangoColor GSEAL (foreground);
+ PangoColor GSEAL (background);
- PangoAttrList *extra_attrs;
+ PangoAttrList *GSEAL (extra_attrs);
- PangoUnderline underline_style;
+ PangoUnderline GSEAL (underline_style);
- gint rise;
- gint fixed_height_rows;
+ gint GSEAL (rise);
+ gint GSEAL (fixed_height_rows);
- guint strikethrough : 1;
+ guint GSEAL (strikethrough : 1);
- guint editable : 1;
+ guint GSEAL (editable : 1);
- guint scale_set : 1;
+ guint GSEAL (scale_set : 1);
- guint foreground_set : 1;
- guint background_set : 1;
+ guint GSEAL (foreground_set : 1);
+ guint GSEAL (background_set : 1);
- guint underline_set : 1;
+ guint GSEAL (underline_set : 1);
- guint rise_set : 1;
+ guint GSEAL (rise_set : 1);
- guint strikethrough_set : 1;
+ guint GSEAL (strikethrough_set : 1);
- guint editable_set : 1;
- guint calc_fixed_height : 1;
+ guint GSEAL (editable_set : 1);
+ guint GSEAL (calc_fixed_height : 1);
};
struct _GtkCellRendererTextClass