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;
gfloat xalign;
gfloat yalign;
gfloat ratio;
gboolean obey_child;
gfloat GSEAL(xalign);
gfloat GSEAL(yalign);
gfloat GSEAL(ratio);
gboolean GSEAL(obey_child);
GtkAllocation center_allocation;
};