summaryrefslogtreecommitdiff
path: root/telepathy-glib/connection-manager.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2012-05-04 16:41:21 +0100
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-06-04 13:43:09 +0200
commitcacba6db63a23df79f67eb149cedecfe1af052e2 (patch)
tree72a491ed9f0a2f1ba6172119ba34047ddab4883b /telepathy-glib/connection-manager.c
parent1e9f3817245a25daa2c5829210f7170bca680007 (diff)
downloadtelepathy-glib-cacba6db63a23df79f67eb149cedecfe1af052e2.tar.gz
TpConnectionManagerParam: seal struct fields
We have accessors for all of them, and the GValue is going to be a problem as we move towards GVariant.
Diffstat (limited to 'telepathy-glib/connection-manager.c')
-rw-r--r--telepathy-glib/connection-manager.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/telepathy-glib/connection-manager.c b/telepathy-glib/connection-manager.c
index fc09d8ffb..a4c2d6172 100644
--- a/telepathy-glib/connection-manager.c
+++ b/telepathy-glib/connection-manager.c
@@ -197,17 +197,20 @@ enum
/**
* TpConnectionManagerParam:
- * @name: The name of this parameter
- * @dbus_signature: This parameter's D-Bus signature
- * @default_value: This parameter's default value, or an arbitrary value
- * of an appropriate type if %TP_CONN_MGR_PARAM_FLAG_HAS_DEFAULT is not
- * set on this parameter, or an unset GValue if the signature is not
- * recognised by telepathy-glib
- * @flags: This parameter's flags (a combination of #TpConnMgrParamFlags)
- * @priv: Pointer to opaque private data
*
* Structure representing a connection manager parameter.
*
+ * Since 0.UNRELEASED, accessing the fields of this struct is deprecated,
+ * and they are no longer documented here.
+ * Use the accessors tp_connection_manager_protocol_param_get_name(),
+ * tp_connection_manager_protocol_param_get_dbus_signature(),
+ * tp_connection_manager_protocol_param_is_required(),
+ * tp_connection_manager_protocol_param_is_required_for_registration(),
+ * tp_connection_manager_protocol_param_is_secret(),
+ * tp_connection_manager_protocol_param_is_dbus_property(),
+ * tp_connection_manager_protocol_param_get_default(),
+ * tp_connection_manager_protocol_param_dup_default_variant() instead.
+ *
* Since: 0.7.1
*/