diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-04-22 00:08:15 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-04-22 18:21:15 +0800 |
commit | c96ce108a6988c37e05ee6f9d9fb91ef9c09f1c1 (patch) | |
tree | 448712713e370bdeecf99d02a2174b3c5b445a6f /libempathy/empathy-contact-manager.c | |
parent | aa098bf904f8e85fa6aa44ffea99e1e027775d26 (diff) | |
download | gsoc2013-empathy-c96ce108a6988c37e05ee6f9d9fb91ef9c09f1c1.tar gsoc2013-empathy-c96ce108a6988c37e05ee6f9d9fb91ef9c09f1c1.tar.gz gsoc2013-empathy-c96ce108a6988c37e05ee6f9d9fb91ef9c09f1c1.tar.bz2 gsoc2013-empathy-c96ce108a6988c37e05ee6f9d9fb91ef9c09f1c1.tar.lz gsoc2013-empathy-c96ce108a6988c37e05ee6f9d9fb91ef9c09f1c1.tar.xz gsoc2013-empathy-c96ce108a6988c37e05ee6f9d9fb91ef9c09f1c1.tar.zst gsoc2013-empathy-c96ce108a6988c37e05ee6f9d9fb91ef9c09f1c1.zip |
Rename manager to self to not confuse with account_manager.
Diffstat (limited to 'libempathy/empathy-contact-manager.c')
-rw-r--r-- | libempathy/empathy-contact-manager.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libempathy/empathy-contact-manager.c b/libempathy/empathy-contact-manager.c index 55e709b45..66c4514af 100644 --- a/libempathy/empathy-contact-manager.c +++ b/libempathy/empathy-contact-manager.c @@ -130,9 +130,9 @@ contact_manager_invalidated_cb (TpProxy *connection, static void contact_manager_new_connection_cb (EmpathyAccountManager *account_manager, TpConnection *connection, - EmpathyContactManager *manager) + EmpathyContactManager *self) { - EmpathyContactManagerPriv *priv = GET_PRIV (manager); + EmpathyContactManagerPriv *priv = GET_PRIV (self); EmpathyTpContactList *list; if (g_hash_table_lookup (priv->lists, connection)) { @@ -146,18 +146,18 @@ contact_manager_new_connection_cb (EmpathyAccountManager *account_manager, g_hash_table_insert (priv->lists, g_object_ref (connection), list); g_signal_connect (connection, "invalidated", G_CALLBACK (contact_manager_invalidated_cb), - manager); + self); /* Connect signals */ g_signal_connect (list, "members-changed", G_CALLBACK (contact_manager_members_changed_cb), - manager); + self); g_signal_connect (list, "pendings-changed", G_CALLBACK (contact_manager_pendings_changed_cb), - manager); + self); g_signal_connect (list, "groups-changed", G_CALLBACK (contact_manager_groups_changed_cb), - manager); + self); } static void |