summaryrefslogtreecommitdiff
path: root/gtk/gtkbbox.h
diff options
context:
space:
mode:
authorTim Janik <timj@src.gnome.org>2008-06-20 10:57:57 +0000
committerTim Janik <timj@src.gnome.org>2008-06-20 10:57:57 +0000
commit6c365eba73b9125ab946200313a2b96d5c8599b5 (patch)
treec6ac5efdf9f6d58266cbe0ddb7eee225441ebe2c /gtk/gtkbbox.h
parentfe53ab75bb6de7bacd1ee2c212131eaf241bed5a (diff)
downloadgtk+-6c365eba73b9125ab946200313a2b96d5c8599b5.tar.gz
Deprecate direct access to public variables in GtkButtonBox.
* gtk/gtkbbox.h: Deprecate direct access through GSEAL(). svn path=/trunk/; revision=20490
Diffstat (limited to 'gtk/gtkbbox.h')
-rw-r--r--gtk/gtkbbox.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkbbox.h b/gtk/gtkbbox.h
index ecd91d78b2..f0666a210f 100644
--- a/gtk/gtkbbox.h
+++ b/gtk/gtkbbox.h
@@ -52,11 +52,11 @@ typedef struct _GtkButtonBoxClass GtkButtonBoxClass;
struct _GtkButtonBox
{
GtkBox box;
- gint child_min_width;
- gint child_min_height;
- gint child_ipad_x;
- gint child_ipad_y;
- GtkButtonBoxStyle layout_style;
+ gint GSEAL (child_min_width);
+ gint GSEAL (child_min_height);
+ gint GSEAL (child_ipad_x);
+ gint GSEAL (child_ipad_y);
+ GtkButtonBoxStyle GSEAL (layout_style);
};
struct _GtkButtonBoxClass