summaryrefslogtreecommitdiff
path: root/telepathy-glib/client-factory.c
diff options
context:
space:
mode:
authorGeorge Kiagiadakis <gkiagia@tolabaki.gr>2016-11-29 11:21:42 +0200
committerGeorge Kiagiadakis <gkiagia@tolabaki.gr>2016-11-29 11:21:42 +0200
commit3d37b17e7854acff3c83f58ad3f7d6cbdd34c27b (patch)
tree4bda10043d280ec35324693f75857224caed9ed5 /telepathy-glib/client-factory.c
parentb48351addcdf872f421fbb6a93bfd3a3c27c3280 (diff)
downloadtelepathy-glib-3d37b17e7854acff3c83f58ad3f7d6cbdd34c27b.tar.gz
introspection: fix annotation warnings possibly caused by a g-i bugnext
g-i for some reason complains about (transfer none) *not* being applied to an array, container or object in these instances, although we actually apply it to arrays. Since (transfer none) is implied for const arrays though, we can remove it and apparently the generated .gir file is correct! \o/
Diffstat (limited to 'telepathy-glib/client-factory.c')
-rw-r--r--telepathy-glib/client-factory.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/telepathy-glib/client-factory.c b/telepathy-glib/client-factory.c
index d1826244f..bde9f039e 100644
--- a/telepathy-glib/client-factory.c
+++ b/telepathy-glib/client-factory.c
@@ -766,7 +766,7 @@ tp_client_factory_dup_account_features (TpClientFactory *self,
/**
* tp_client_factory_add_account_features:
* @self: a #TpClientFactory object
- * @features: (transfer none) (array zero-terminated=1) (allow-none): an array
+ * @features: (array zero-terminated=1) (allow-none): an array
* of desired features, ending with 0; %NULL is equivalent to an array
* containing only 0
*
@@ -907,7 +907,7 @@ tp_client_factory_dup_connection_features (TpClientFactory *self,
/**
* tp_client_factory_add_connection_features:
* @self: a #TpClientFactory object
- * @features: (transfer none) (array zero-terminated=1) (allow-none): an array
+ * @features: (array zero-terminated=1) (allow-none): an array
* of desired features, ending with 0; %NULL is equivalent to an array
* containing only 0
*
@@ -1053,7 +1053,7 @@ tp_client_factory_dup_channel_features (TpClientFactory *self,
/**
* tp_client_factory_add_channel_features:
* @self: a #TpClientFactory object
- * @features: (transfer none) (array zero-terminated=1) (allow-none): an array
+ * @features: (array zero-terminated=1) (allow-none): an array
* of desired features, ending with 0; %NULL is equivalent to an array
* containing only 0
*
@@ -1358,7 +1358,7 @@ tp_client_factory_dup_contact_features (TpClientFactory *self,
/**
* tp_client_factory_add_contact_features:
* @self: a #TpClientFactory object
- * @features: (transfer none) (array zero-terminated=1) (allow-none):
+ * @features: (array zero-terminated=1) (allow-none):
* an array of desired features
*
* Add @features to the desired features to be prepared on #TpContact
@@ -1607,7 +1607,7 @@ tp_client_factory_dup_protocol_features (TpClientFactory *self,
/**
* tp_client_factory_add_protocol_features:
* @self: a #TpClientFactory object
- * @features: (transfer none) (array zero-terminated=1) (allow-none): an array
+ * @features: (array zero-terminated=1) (allow-none): an array
* of desired features, ending with 0; %NULL is equivalent to an array
* containing only 0
*
@@ -1736,7 +1736,7 @@ tp_client_factory_dup_tls_certificate_features (TpClientFactory *self,
/**
* tp_client_factory_add_tls_certificate_features:
* @self: a #TpClientFactory object
- * @features: (transfer none) (array zero-terminated=1) (allow-none): an array
+ * @features: (array zero-terminated=1) (allow-none): an array
* of desired features, ending with 0; %NULL is equivalent to an array
* containing only 0
*