summaryrefslogtreecommitdiff
path: root/girepository/girparser.c
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2014-04-16 11:33:36 -0400
committerRyan Lortie <desrt@desrt.ca>2014-05-06 08:18:41 -0400
commit3ede3b8f9e038cde4a731e9e56c4060961d74ef8 (patch)
tree57badc8d432ab03d574c9b28f755059908e02f12 /girepository/girparser.c
parent17b19cfcad236fd2def64b9aac454ecb3cd42e8d (diff)
downloadgobject-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/girparser.c')
-rw-r--r--girepository/girparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/girepository/girparser.c b/girepository/girparser.c
index c7feb6ad..ac21f6a9 100644
--- a/girepository/girparser.c
+++ b/girepository/girparser.c
@@ -1127,9 +1127,9 @@ start_parameter (GMarkupParseContext *context,
param->optional = FALSE;
if (allow_none && strcmp (allow_none, "1") == 0)
- param->allow_none = TRUE;
+ param->nullable = TRUE;
else
- param->allow_none = FALSE;
+ param->nullable = FALSE;
if (skip && strcmp (skip, "1") == 0)
param->skip = TRUE;