From 419c484adad86e26bda02223934e35987501e3e4 Mon Sep 17 00:00:00 2001 From: John Finlay Date: Sun, 30 Jul 2006 00:08:39 +0000 Subject: Fix define to point to the correct function pointer field. * gobject/pygobject.h (pyg_param_gvalue_from_pyobject): Fix define to point to the correct function pointer field. --- gobject/pygobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gobject') diff --git a/gobject/pygobject.h b/gobject/pygobject.h index fd9b832..db6e36c 100644 --- a/gobject/pygobject.h +++ b/gobject/pygobject.h @@ -227,8 +227,8 @@ struct _PyGObject_Functions *_PyGObject_API; #define pyg_param_spec_from_object (_PyGObject_API->paramspec_get) #define pyg_pyobj_to_unichar_conv (_PyGObject_API->pyobj_to_unichar_conv) #define pyg_parse_constructor_args (_PyGObject_API->parse_constructor_args) -#define pyg_param_gvalue_from_pyobject (_PyGObject_API->value_from_pyobject) #define pyg_param_gvalue_as_pyobject (_PyGObject_API->value_as_pyobject) +#define pyg_param_gvalue_from_pyobject (_PyGObject_API->gvalue_from_param_pyobject) #define PyGEnum_Type (*_PyGObject_API->enum_type) #define pyg_enum_add (_PyGObject_API->enum_add) #define pyg_enum_from_gtype (_PyGObject_API->enum_from_gtype) -- cgit