summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVivek Dasmohapatra <vivek@collabora.co.uk>2011-04-14 19:26:27 +0100
committerVivek Dasmohapatra <vivek@collabora.co.uk>2011-05-04 15:27:13 +0100
commitb01dd79df9032460822c3c2eebf3b3cee6cc7103 (patch)
tree40f68999424e80768cb6719d78b27608a13c650c
parent90aff1c8afafd4defa2a4059bb36f61307b691fc (diff)
downloadtelepathy-mission-control-b01dd79df9032460822c3c2eebf3b3cee6cc7103.tar.gz
Remove unused callback
-rw-r--r--src/client-registry.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/client-registry.c b/src/client-registry.c
index 7d2bf437..cbb868c1 100644
--- a/src/client-registry.c
+++ b/src/client-registry.c
@@ -351,27 +351,6 @@ mcd_client_registry_name_owner_filter (DBusConnection *conn,
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
}
-static void
-mcd_client_registry_name_owner_changed_cb (TpDBusDaemon *proxy,
- const gchar *name,
- const gchar *old_owner,
- const gchar *new_owner,
- gpointer user_data G_GNUC_UNUSED,
- GObject *weak_object)
-{
- McdClientRegistry *self = MCD_CLIENT_REGISTRY (weak_object);
-
- /* dbus-glib guarantees this */
- g_assert (name != NULL);
- g_assert (old_owner != NULL);
- g_assert (new_owner != NULL);
-
- if (old_owner[0] == '\0' && new_owner[0] != '\0')
- {
- _mcd_client_registry_found_name (self, name, new_owner, FALSE);
- }
-}
-
static gboolean
add_match (DBusConnection *conn,
const gchar const *rule,