[empathy] Get the factory in _constructed because connection property is not set yet in _init



commit e4d54d6de30699fca0374e8b99f31c5ba1f70e78
Author: Xavier Claessens <xclaesse gmail com>
Date:   Tue Feb 17 15:48:14 2009 +0100

    Get the factory in _constructed because connection property is not set yet in _init
---
 libempathy/empathy-tp-contact-list.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c
index 4937f56..876e356 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,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]