diff options
author | Sjoerd Simons <sjoerd@luon.net> | 2008-08-12 09:34:36 +0000 |
---|---|---|
committer | Jonny Lamb <jonnylamb@jonnylamb.com> | 2008-08-13 15:07:25 +0100 |
commit | 69f34dd8bced93dde872b1978192910bdddf5084 (patch) | |
tree | 57a423cd10a5642db25ae3ed5dc312ff4b9af963 /telepathy-glib/contacts-mixin.h | |
parent | 93f8010fd497374590cc7a5df6c5a761b894e43a (diff) | |
download | telepathy-glib-69f34dd8bced93dde872b1978192910bdddf5084.tar.gz |
ContactsMixin: Rename GetAttributeFunc to FilLContactAttributes
20080812093436-93b9a-502248b3596e69f323588abb866aa25f9ac33ffb.gz
Diffstat (limited to 'telepathy-glib/contacts-mixin.h')
-rw-r--r-- | telepathy-glib/contacts-mixin.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/telepathy-glib/contacts-mixin.h b/telepathy-glib/contacts-mixin.h index 1fdc7d940..ca79867b8 100644 --- a/telepathy-glib/contacts-mixin.h +++ b/telepathy-glib/contacts-mixin.h @@ -34,7 +34,7 @@ typedef struct _TpContactsMixin TpContactsMixin; typedef struct _TpContactsMixinPrivate TpContactsMixinPrivate; /** - * TpContactsMixinGetAttributesFunc: + * TpContactsMixinFillContactAttributesFunc: * @obj: An object implementing the presence interface with this mixin * @contacts: The contacts for which attributes are requested * @attributes_hash: hash of handle => hash of attributes, containing all the @@ -43,7 +43,7 @@ typedef struct _TpContactsMixinPrivate TpContactsMixinPrivate; * This function is called to add attributes of contacts * */ -typedef void (*TpContactsMixinGetAttributesFunc) (GObject *obj, +typedef void (*TpContactsMixinFillContactAttributesFunc) (GObject *obj, const GArray *contacts, GHashTable *attributes_hash); /** @@ -100,7 +100,8 @@ void tp_contacts_mixin_finalize (GObject *obj); void tp_contacts_mixin_iface_init (gpointer g_iface, gpointer iface_data); void tp_contacts_mixin_add_inspectable_iface (GObject *obj, - const gchar *interface, TpContactsMixinGetAttributesFunc get_attributes); + const gchar *interface, + TpContactsMixinFillContactAttributesFunc fill_attributes); void tp_contacts_mixin_set_contact_attribute (GHashTable *contact_attributes, TpHandle handle, gchar *attribute, GValue *value); |