summaryrefslogtreecommitdiff
path: root/tests/gimarshallingtests.c
diff options
context:
space:
mode:
authorSimon Feltman <sfeltman@src.gnome.org>2013-02-06 12:54:14 -0800
committerSimon Feltman <sfeltman@src.gnome.org>2013-02-06 12:54:14 -0800
commit7f144d32095a0901e4bbe3a22b22487887cd53eb (patch)
tree0cc082b74557f96303abe8f89c495a62602715d1 /tests/gimarshallingtests.c
parent8079124d854dff898e6010df6819f5b20ba8e004 (diff)
downloadgobject-introspection-7f144d32095a0901e4bbe3a22b22487887cd53eb.tar.gz
gimarshalingtests: fix spelling mistake in new vfunc object helpers
Diffstat (limited to 'tests/gimarshallingtests.c')
-rw-r--r--tests/gimarshallingtests.c10
1 files changed, 5 insertions, 5 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;