diff options
author | Ryan Lortie <desrt@desrt.ca> | 2014-04-16 11:33:36 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2014-05-06 08:18:41 -0400 |
commit | 3ede3b8f9e038cde4a731e9e56c4060961d74ef8 (patch) | |
tree | 57badc8d432ab03d574c9b28f755059908e02f12 /girepository/girnode.c | |
parent | 17b19cfcad236fd2def64b9aac454ecb3cd42e8d (diff) | |
download | gobject-introspection-3ede3b8f9e038cde4a731e9e56c4060961d74ef8.tar.gz |
girepository: ArgBlob: rename allow_none parameter
Rename the "allow_none" parameter on internal/private structure ArgBlob
to "nullable".
This is a straight rename with no other changes.
https://bugzilla.gnome.org/show_bug.cgi?id=660879
Diffstat (limited to 'girepository/girnode.c')
-rw-r--r-- | girepository/girnode.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/girepository/girnode.c b/girepository/girnode.c index 093a3783..53385c26 100644 --- a/girepository/girnode.c +++ b/girepository/girnode.c @@ -1660,7 +1660,7 @@ _g_ir_node_build_typelib (GIrNode *node, _g_ir_node_build_typelib ((GIrNode *)function->result->type, node, build, &signature, offset2); - blob2->may_return_null = function->result->allow_none; + blob2->may_return_null = function->result->nullable; blob2->caller_owns_return_value = function->result->transfer; blob2->caller_owns_return_container = function->result->shallow_transfer; blob2->skip_return = function->result->skip; @@ -1702,7 +1702,7 @@ _g_ir_node_build_typelib (GIrNode *node, _g_ir_node_build_typelib ((GIrNode *)function->result->type, node, build, &signature, offset2); - blob2->may_return_null = function->result->allow_none; + blob2->may_return_null = function->result->nullable; blob2->caller_owns_return_value = function->result->transfer; blob2->caller_owns_return_container = function->result->shallow_transfer; blob2->reserved = 0; @@ -1759,7 +1759,7 @@ _g_ir_node_build_typelib (GIrNode *node, _g_ir_node_build_typelib ((GIrNode *)signal->result->type, node, build, &signature, offset2); - blob2->may_return_null = signal->result->allow_none; + blob2->may_return_null = signal->result->nullable; blob2->caller_owns_return_value = signal->result->transfer; blob2->caller_owns_return_container = signal->result->shallow_transfer; blob2->reserved = 0; @@ -1817,7 +1817,7 @@ _g_ir_node_build_typelib (GIrNode *node, _g_ir_node_build_typelib ((GIrNode *)vfunc->result->type, node, build, &signature, offset2); - blob2->may_return_null = vfunc->result->allow_none; + blob2->may_return_null = vfunc->result->nullable; blob2->caller_owns_return_value = vfunc->result->transfer; blob2->caller_owns_return_container = vfunc->result->shallow_transfer; blob2->reserved = 0; @@ -1848,7 +1848,7 @@ _g_ir_node_build_typelib (GIrNode *node, blob->in = param->in; blob->out = param->out; blob->caller_allocates = param->caller_allocates; - blob->allow_none = param->allow_none; + blob->nullable = param->nullable; blob->skip = param->skip; blob->optional = param->optional; blob->transfer_ownership = param->transfer; |