diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2010-06-02 17:25:03 +0200 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2010-06-03 15:02:19 +0200 |
commit | b7ce5af0c4c610e92b84dc62764b18102ce5dfd5 (patch) | |
tree | 07f61230e0c3c1634254fe82b4b423519b52c79a /telepathy-glib/connection-contact-info.c | |
parent | c26392237a842fcbcb6d941a7b1040b6538dea55 (diff) | |
download | telepathy-glib-b7ce5af0c4c610e92b84dc62764b18102ce5dfd5.tar.gz |
Make tp_contact_info_field_spec_new() private
Diffstat (limited to 'telepathy-glib/connection-contact-info.c')
-rw-r--r-- | telepathy-glib/connection-contact-info.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/telepathy-glib/connection-contact-info.c b/telepathy-glib/connection-contact-info.c index 104e907cd..bbd755d43 100644 --- a/telepathy-glib/connection-contact-info.c +++ b/telepathy-glib/connection-contact-info.c @@ -56,7 +56,7 @@ */ /** - * tp_contact_info_field_spec_new: + * _tp_contact_info_field_spec_new: * @name: The name of the field; this is the lowercased name of a vCard * field. For example, a field representing a contact's address would be named * "adr". @@ -77,7 +77,7 @@ * Since: 0.11.UNRELEASED */ TpContactInfoFieldSpec * -tp_contact_info_field_spec_new (const gchar *name, +_tp_contact_info_field_spec_new (const gchar *name, GStrv parameters, TpContactInfoFieldFlags flags, guint max) @@ -109,7 +109,7 @@ tp_contact_info_field_spec_copy (const TpContactInfoFieldSpec *self) { g_return_val_if_fail (self != NULL, NULL); - return tp_contact_info_field_spec_new (self->name, self->parameters, + return _tp_contact_info_field_spec_new (self->name, self->parameters, self->flags, self->max); } @@ -465,7 +465,7 @@ tp_connection_get_contact_info_cb (TpProxy *proxy, tp_value_array_unpack (va, 4, &name, ¶meters, &flags, &max); self->priv->contact_info_supported_fields = g_list_prepend ( self->priv->contact_info_supported_fields, - tp_contact_info_field_spec_new (name, parameters, flags, max)); + _tp_contact_info_field_spec_new (name, parameters, flags, max)); } success = TRUE; |