summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd@luon.net>2008-08-12 09:37:24 +0000
committerJonny Lamb <jonnylamb@jonnylamb.com>2008-08-13 15:07:25 +0100
commit77039af13bac01f5ce7dfc6da10e7433b61ba141 (patch)
tree6381599b17e42607d8629e88b3d0e314842ca1f4
parent69f34dd8bced93dde872b1978192910bdddf5084 (diff)
downloadtelepathy-glib-77039af13bac01f5ce7dfc6da10e7433b61ba141.tar.gz
BaseConnection: s/get_contact_attribute/fill_contact_attributes for more consistency
20080812093724-93b9a-d8a401308b792953dcc6d824a39e8029607d2696.gz
-rw-r--r--telepathy-glib/base-connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/telepathy-glib/base-connection.c b/telepathy-glib/base-connection.c
index e47760444..e2d640d27 100644
--- a/telepathy-glib/base-connection.c
+++ b/telepathy-glib/base-connection.c
@@ -1723,7 +1723,7 @@ service_iface_init (gpointer g_iface, gpointer iface_data)
}
static void
-tp_base_connection_get_contact_attributes (GObject *obj,
+tp_base_connection_fill_contact_attributes (GObject *obj,
const GArray *contacts, GHashTable *attributes_hash)
{
TpBaseConnection *self = TP_BASE_CONNECTION (obj);
@@ -1764,6 +1764,6 @@ tp_base_connection_register_with_contacts_iface (TpBaseConnection *self)
{
tp_contacts_mixin_add_inspectable_iface (G_OBJECT (self),
TP_IFACE_CONNECTION,
- tp_base_connection_get_contact_attributes);
+ tp_base_connection_fill_contact_attributes);
}