diff options
author | Simon Feltman <sfeltman@src.gnome.org> | 2013-02-06 12:54:14 -0800 |
---|---|---|
committer | Simon Feltman <sfeltman@src.gnome.org> | 2013-02-06 12:54:14 -0800 |
commit | 7f144d32095a0901e4bbe3a22b22487887cd53eb (patch) | |
tree | 0cc082b74557f96303abe8f89c495a62602715d1 /tests | |
parent | 8079124d854dff898e6010df6819f5b20ba8e004 (diff) | |
download | gobject-introspection-7f144d32095a0901e4bbe3a22b22487887cd53eb.tar.gz |
gimarshalingtests: fix spelling mistake in new vfunc object helpers
Diffstat (limited to 'tests')
-rw-r--r-- | tests/gimarshallingtests.c | 10 | ||||
-rw-r--r-- | tests/gimarshallingtests.h | 16 |
2 files changed, 13 insertions, 13 deletions
diff --git a/tests/gimarshallingtests.c b/tests/gimarshallingtests.c index 54daa335..2e1279a2 100644 --- a/tests/gimarshallingtests.c +++ b/tests/gimarshallingtests.c @@ -4346,7 +4346,7 @@ gi_marshalling_tests_object_get_ref_info_for_vfunc_return_object_transfer_none ( void gi_marshalling_tests_object_get_ref_info_for_vfunc_return_object_transfer_full (GIMarshallingTestsObject *self, guint *ref_count, gboolean *is_floating) { - GObject *object = GI_MARSHALLING_TESTS_OBJECT_GET_CLASS (self)->vfunc_return_object_tansfer_full (self); + GObject *object = GI_MARSHALLING_TESTS_OBJECT_GET_CLASS (self)->vfunc_return_object_transfer_full (self); *ref_count = object->ref_count; *is_floating = g_object_is_floating(object); g_object_unref(object); @@ -4379,7 +4379,7 @@ void gi_marshalling_tests_object_get_ref_info_for_vfunc_out_object_transfer_full (GIMarshallingTestsObject *self, guint *ref_count, gboolean *is_floating) { GObject *object = NULL; - GI_MARSHALLING_TESTS_OBJECT_GET_CLASS (self)->vfunc_out_object_tansfer_full (self, &object); + GI_MARSHALLING_TESTS_OBJECT_GET_CLASS (self)->vfunc_out_object_transfer_full (self, &object); *ref_count = object->ref_count; *is_floating = g_object_is_floating(object); g_object_unref(object); @@ -4396,7 +4396,7 @@ _vfunc_in_object_destroy_callback(gboolean *destroy_called, GObject *where_the_o * @ref_count: (out): Ref count of the in object directly after vfunc call. * @is_floating: (out): Floating state of in object directly after vfunc call. * - * Calls vfunc_in_object_tansfer_none with a new object of the given type. + * Calls vfunc_in_object_transfer_none with a new object of the given type. */ void gi_marshalling_tests_object_get_ref_info_for_vfunc_in_object_transfer_none (GIMarshallingTestsObject *self, GType type, guint *ref_count, gboolean *is_floating) @@ -4407,7 +4407,7 @@ gi_marshalling_tests_object_get_ref_info_for_vfunc_in_object_transfer_none (GIMa GObject *object = g_object_new(type, NULL); g_object_weak_ref (object, (GWeakNotify)_vfunc_in_object_destroy_callback, &destroy_called); - GI_MARSHALLING_TESTS_OBJECT_GET_CLASS (self)->vfunc_in_object_tansfer_none (self, object); + GI_MARSHALLING_TESTS_OBJECT_GET_CLASS (self)->vfunc_in_object_transfer_none (self, object); if (destroy_called) { *ref_count = 0; *is_floating = FALSE; @@ -4437,7 +4437,7 @@ gi_marshalling_tests_object_get_ref_info_for_vfunc_in_object_transfer_full (GIMa /* Calling the vfunc takes ownership of the object, so we use a weak_ref to determine * if the object gets destroyed after the call and appropriately return 0 as the ref count. */ - GI_MARSHALLING_TESTS_OBJECT_GET_CLASS (self)->vfunc_in_object_tansfer_full (self, object); + GI_MARSHALLING_TESTS_OBJECT_GET_CLASS (self)->vfunc_in_object_transfer_full (self, object); if (destroy_called) { *ref_count = 0; *is_floating = FALSE; diff --git a/tests/gimarshallingtests.h b/tests/gimarshallingtests.h index 82137a75..a361de02 100644 --- a/tests/gimarshallingtests.h +++ b/tests/gimarshallingtests.h @@ -813,11 +813,11 @@ struct _GIMarshallingTestsObjectClass GObject* (* vfunc_return_object_transfer_none) (GIMarshallingTestsObject *self); /** - * GIMarshallingTestsObjectClass::vfunc_return_object_tansfer_full: + * GIMarshallingTestsObjectClass::vfunc_return_object_transfer_full: * * Returns: (transfer full) */ - GObject* (* vfunc_return_object_tansfer_full) (GIMarshallingTestsObject *self); + GObject* (* vfunc_return_object_transfer_full) (GIMarshallingTestsObject *self); /** * GIMarshallingTestsObjectClass::vfunc_out_object_transfer_none: @@ -826,22 +826,22 @@ struct _GIMarshallingTestsObjectClass void (* vfunc_out_object_transfer_none) (GIMarshallingTestsObject *self, GObject **object); /** - * GIMarshallingTestsObjectClass::vfunc_out_object_tansfer_full: + * GIMarshallingTestsObjectClass::vfunc_out_object_transfer_full: * @object: (out) (transfer full): */ - void (* vfunc_out_object_tansfer_full) (GIMarshallingTestsObject *self, GObject **object); + void (* vfunc_out_object_transfer_full) (GIMarshallingTestsObject *self, GObject **object); /** - * GIMarshallingTestsObjectClass::vfunc_in_object_tansfer_none: + * GIMarshallingTestsObjectClass::vfunc_in_object_transfer_none: * @object: (in) (transfer none): */ - void (* vfunc_in_object_tansfer_none) (GIMarshallingTestsObject *self, GObject *object); + void (* vfunc_in_object_transfer_none) (GIMarshallingTestsObject *self, GObject *object); /** - * GIMarshallingTestsObjectClass::vfunc_in_object_tansfer_full: + * GIMarshallingTestsObjectClass::vfunc_in_object_transfer_full: * @object: (in) (transfer full): */ - void (* vfunc_in_object_tansfer_full) (GIMarshallingTestsObject *self, GObject *object); + void (* vfunc_in_object_transfer_full) (GIMarshallingTestsObject *self, GObject *object); }; |