diff options
author | Tim Janik <timj@src.gnome.org> | 2008-06-20 10:58:02 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2008-06-20 10:58:02 +0000 |
commit | 81acd2e7be38e0518efa205f8151692495dff58c (patch) | |
tree | d0ddc930c64f913b2d9faf21dda250ae43484ec3 /gtk/gtkbutton.h | |
parent | 6c365eba73b9125ab946200313a2b96d5c8599b5 (diff) | |
download | gtk+-81acd2e7be38e0518efa205f8151692495dff58c.tar.gz |
Deprecate direct access to public variables in GtkButton.
* gtk/gtkbutton.h: Deprecate direct access through GSEAL().
svn path=/trunk/; revision=20491
Diffstat (limited to 'gtk/gtkbutton.h')
-rw-r--r-- | gtk/gtkbutton.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtkbutton.h b/gtk/gtkbutton.h index 499615da98..bdfbfc0af8 100644 --- a/gtk/gtkbutton.h +++ b/gtk/gtkbutton.h @@ -60,15 +60,15 @@ struct _GtkButton guint activate_timeout; - guint constructed : 1; - guint in_button : 1; - guint button_down : 1; - guint relief : 2; - guint use_underline : 1; - guint use_stock : 1; - guint depressed : 1; - guint depress_on_activate : 1; - guint focus_on_click : 1; + guint GSEAL (constructed : 1); + guint GSEAL (in_button : 1); + guint GSEAL (button_down : 1); + guint GSEAL (relief : 2); + guint GSEAL (use_underline : 1); + guint GSEAL (use_stock : 1); + guint GSEAL (depressed : 1); + guint GSEAL (depress_on_activate : 1); + guint GSEAL (focus_on_click : 1); }; struct _GtkButtonClass |