]> Pileus Git - ~andy/gtk/commitdiff
Seal GtkSpinButton.
authorTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 11:07:35 +0000 (11:07 +0000)
committerTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 11:07:35 +0000 (11:07 +0000)
svn path=/trunk/; revision=20597

gtk/gtkspinbutton.h

index f692d5d9ea87dfbe568e5f546785881406d2a19d..bcb855f97df88fd4787e65197fe9bbe323bd1e20 100644 (file)
@@ -77,26 +77,26 @@ struct _GtkSpinButton
 {
   GtkEntry entry;
 
-  GtkAdjustment *adjustment;
+  GtkAdjustment *GSEAL (adjustment);
 
-  GdkWindow *panel;
+  GdkWindow *GSEAL (panel);
 
-  guint32 timer;
+  guint32 GSEAL (timer);
 
-  gdouble climb_rate;
-  gdouble timer_step;
+  gdouble GSEAL (climb_rate);
+  gdouble GSEAL (timer_step);
 
-  GtkSpinButtonUpdatePolicy update_policy;
+  GtkSpinButtonUpdatePolicy GSEAL (update_policy);
 
-  guint in_child : 2;
-  guint click_child : 2; /* valid: GTK_ARROW_UP=0, GTK_ARROW_DOWN=1 or 2=NONE/BOTH */
-  guint button : 2;
-  guint need_timer : 1;
-  guint timer_calls : 3;
-  guint digits : 10;
-  guint numeric : 1;
-  guint wrap : 1;
-  guint snap_to_ticks : 1;
+  guint GSEAL (in_child : 2);
+  guint GSEAL (click_child : 2); /* valid: GTK_ARROW_UP=0, GTK_ARROW_DOWN=1 or 2=NONE/BOTH */
+  guint GSEAL (button : 2);
+  guint GSEAL (need_timer : 1);
+  guint GSEAL (timer_calls : 3);
+  guint GSEAL (digits : 10);
+  guint GSEAL (numeric : 1);
+  guint GSEAL (wrap : 1);
+  guint GSEAL (snap_to_ticks : 1);
 };
 
 struct _GtkSpinButtonClass