diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | gobject/pygobject.h | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-07-29 John Finlay <finlay@moeraki.com> + + * gobject/pygobject.h (pyg_param_gvalue_from_pyobject): Fix define + to point to the correct function pointer field. + 2006-07-29 Gustavo J. A. M. Carneiro <gjc@gnome.org> * gobject/pygflags.c (pyg_flags_add): idem. 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) |
