diff options
Diffstat (limited to 'girepository/girwriter.c')
-rw-r--r-- | girepository/girwriter.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/girepository/girwriter.c b/girepository/girwriter.c index d9f916c5..7f5f7e87 100644 --- a/girepository/girwriter.c +++ b/girepository/girwriter.c @@ -916,6 +916,9 @@ write_vfunc_info (const gchar *namespace, else if (flags & GI_VFUNC_MUST_NOT_OVERRIDE) xml_printf (file, " override=\"never\""); + if (flags & GI_VFUNC_THROWS) + xml_printf (file, " throws=\"1\""); + xml_printf (file, " offset=\"%d\"", offset); if (invoker) |