diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2011-08-11 14:08:33 +0200 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2011-08-11 14:09:23 +0200 |
commit | c3fd789bb759aefb6fda144b953c2d09fc0dc20d (patch) | |
tree | 5f39df79ea2cd10b9f76f4cca85db8d6b50d6114 /gio/gdbusintrospection.c | |
parent | 782f83938395c0ac57198ec081e9566c170ef8ef (diff) | |
download | glib-c3fd789bb759aefb6fda144b953c2d09fc0dc20d.tar.gz |
[gi] Add missing (out) annotation to g_dbus_{node,interface}_info_generate_xml()
Diffstat (limited to 'gio/gdbusintrospection.c')
-rw-r--r-- | gio/gdbusintrospection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/gdbusintrospection.c b/gio/gdbusintrospection.c index 10e38dd94..3f0c757fe 100644 --- a/gio/gdbusintrospection.c +++ b/gio/gdbusintrospection.c @@ -773,7 +773,7 @@ g_dbus_property_info_generate_xml (GDBusPropertyInfo *info, * g_dbus_interface_info_generate_xml: * @info: A #GDBusNodeInfo * @indent: Indentation level. - * @string_builder: A #GString to to append XML data to. + * @string_builder: (out): A #GString to to append XML data to. * * Appends an XML representation of @info (and its children) to @string_builder. * @@ -822,7 +822,7 @@ g_dbus_interface_info_generate_xml (GDBusInterfaceInfo *info, * g_dbus_node_info_generate_xml: * @info: A #GDBusNodeInfo. * @indent: Indentation level. - * @string_builder: A #GString to to append XML data to. + * @string_builder: (out): A #GString to to append XML data to. * * Appends an XML representation of @info (and its children) to @string_builder. * |