]> Pileus Git - ~andy/gtk/commitdiff
Deprecate direct access to public variables in GtkButton.
authorTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 10:58:02 +0000 (10:58 +0000)
committerTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 10:58:02 +0000 (10:58 +0000)
* gtk/gtkbutton.h: Deprecate direct access through GSEAL().

svn path=/trunk/; revision=20491

gtk/gtkbutton.h

index 499615da987442628adbc0bb6e56a72645584b0c..bdfbfc0af8f9833559d0430950d0d14e5669b930 100644 (file)
@@ -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