From e4d54d6de30699fca0374e8b99f31c5ba1f70e78 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Tue, 17 Feb 2009 15:48:14 +0100 Subject: [PATCH] Get the factory in _constructed because connection property is not set yet in _init --- libempathy/empathy-tp-contact-list.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c index 4937f565..876e356f 100644 --- a/libempathy/empathy-tp-contact-list.c +++ b/libempathy/empathy-tp-contact-list.c @@ -701,6 +701,8 @@ tp_contact_list_constructed (GObject *list) const gchar *protocol_name = NULL; const gchar *names[] = {NULL, NULL}; + priv->factory = empathy_tp_contact_factory_dup_singleton (priv->connection); + names[0] = "publish"; tp_cli_connection_call_request_handles (priv->connection, -1, @@ -732,7 +734,7 @@ tp_contact_list_constructed (GObject *list) * put all contacts into a special group in that case. * FIXME: Default group should be an information in the profile */ //protocol_name = tp_connection_get_protocol (priv->connection); - if (!tp_strdiff (protocol_name, "local-xmpp") == 0) { + if (!tp_strdiff (protocol_name, "local-xmpp")) { priv->protocol_group = _("People nearby"); } } @@ -802,7 +804,6 @@ empathy_tp_contact_list_init (EmpathyTpContactList *list) EMPATHY_TYPE_TP_CONTACT_LIST, EmpathyTpContactListPriv); list->priv = priv; - priv->factory = empathy_tp_contact_factory_dup_singleton (priv->connection); /* Map group's name to group's channel */ priv->groups = g_hash_table_new_full (g_str_hash, g_str_equal, -- 2.39.2