diff options
author | Tim Janik <timj@src.gnome.org> | 2008-06-20 10:57:57 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2008-06-20 10:57:57 +0000 |
commit | 6c365eba73b9125ab946200313a2b96d5c8599b5 (patch) | |
tree | c6ac5efdf9f6d58266cbe0ddb7eee225441ebe2c /gtk/gtkbbox.h | |
parent | fe53ab75bb6de7bacd1ee2c212131eaf241bed5a (diff) | |
download | gtk+-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.h | 10 |
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 |