summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Finlay <finlay@src.gnome.org>2006-07-30 00:08:39 +0000
committerJohn Finlay <finlay@src.gnome.org>2006-07-30 00:08:39 +0000
commit419c484adad86e26bda02223934e35987501e3e4 (patch)
tree14e242df5df8cc15830847ab372c7ab9254bad9b
parent2ec5c81e5ad177b665d6a915aa814663f75996c0 (diff)
downloadpygobject-419c484adad86e26bda02223934e35987501e3e4.tar.gz
pygobject-419c484adad86e26bda02223934e35987501e3e4.tar.xz
pygobject-419c484adad86e26bda02223934e35987501e3e4.zip
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.
-rw-r--r--ChangeLog5
-rw-r--r--gobject/pygobject.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index be03711..786b73a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)