summaryrefslogtreecommitdiff
path: root/gio/giomodule.c
diff options
context:
space:
mode:
authorEduardo Lima Mitev <elima@igalia.com>2010-07-29 13:59:42 +0200
committerDan Winship <danw@gnome.org>2011-08-23 19:56:36 -0400
commit30d9636df24000812179f6910cf5c4c3de23cdcd (patch)
treedc958cdd0790b04bc736bdc9465ca0ea2a6ae883 /gio/giomodule.c
parent47987eaf1411bd2fb197524d204b43af9a4a41ac (diff)
downloadglib-30d9636df24000812179f6910cf5c4c3de23cdcd.tar.gz
glib-30d9636df24000812179f6910cf5c4c3de23cdcd.tar.bz2
glib-30d9636df24000812179f6910cf5c4c3de23cdcd.zip
GIO: Add more missing GI annotations
- g_io_extension_point_register() - g_io_extension_point_lookup() - g_io_extension_point_implement() https://bugzilla.gnome.org/show_bug.cgi?id=625383
Diffstat (limited to 'gio/giomodule.c')
-rw-r--r--gio/giomodule.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gio/giomodule.c b/gio/giomodule.c
index 00e8c487b..4b77e3db6 100644
--- a/gio/giomodule.c
+++ b/gio/giomodule.c
@@ -643,8 +643,8 @@ g_io_extension_point_free (GIOExtensionPoint *ep)
*
* Registers an extension point.
*
- * Returns: the new #GIOExtensionPoint. This object is owned by GIO
- * and should not be freed
+ * Returns: (transfer none): the new #GIOExtensionPoint. This object is
+ * owned by GIO and should not be freed.
*/
GIOExtensionPoint *
g_io_extension_point_register (const char *name)
@@ -681,8 +681,8 @@ g_io_extension_point_register (const char *name)
*
* Looks up an existing extension point.
*
- * Returns: the #GIOExtensionPoint, or %NULL if there is no
- * registered extension point with the given name
+ * Returns: (transfer none): the #GIOExtensionPoint, or %NULL if there
+ * is no registered extension point with the given name.
*/
GIOExtensionPoint *
g_io_extension_point_lookup (const char *name)
@@ -826,7 +826,7 @@ extension_prio_compare (gconstpointer a,
* If @type has already been registered as an extension for this
* extension point, the existing #GIOExtension object is returned.
*
- * Returns: a #GIOExtension object for #GType
+ * Returns: (transfer none): a #GIOExtension object for #GType
*/
GIOExtension *
g_io_extension_point_implement (const char *extension_point_name,