Fixed an arg called "class", it's a C++ reserved word..

Original commit message from CVS:
Fixed an arg called "class", it's a C++ reserved word..
This commit is contained in:
Wim Taymans 2001-06-20 21:40:01 +00:00
parent 47ce595848
commit d090a4dede

View file

@ -176,7 +176,7 @@ struct _GParamSpec {
#define g_value_init(value,t) ((value)->type = (t))
void g_object_class_install_property(GtkObjectClass *oclass,guint property_id,GParamSpec *pspec);
GParamSpec *g_object_class_find_property(GtkObjectClass *class,gchar *name);
GParamSpec *g_object_class_find_property(GtkObjectClass *oclass,gchar *name);
#define G_IS_PARAM_SPEC_ENUM(pspec) (GTK_FUNDAMENTAL_TYPE(pspec->value_type) == GTK_TYPE_ENUM)