Deprecate xalign, yalign, ratio and obey_child direct access in GtkAspectFrame.

* gtk/gtkaspectframe.h: Deprecate public object fields by GSEAL.

svn path=/trunk/; revision=20481
This commit is contained in:
Tim Janik 2008-06-20 10:57:01 +00:00
parent e8cb6e4a8c
commit 2aa3a83bd4

View File

@ -52,10 +52,10 @@ struct _GtkAspectFrame
{ {
GtkFrame frame; GtkFrame frame;
gfloat xalign; gfloat GSEAL(xalign);
gfloat yalign; gfloat GSEAL(yalign);
gfloat ratio; gfloat GSEAL(ratio);
gboolean obey_child; gboolean GSEAL(obey_child);
GtkAllocation center_allocation; GtkAllocation center_allocation;
}; };