aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-tp-chat.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2009-01-07 00:49:56 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-01-07 00:49:56 +0800
commite5011edd94a51339ae21e2690fd90af652425549 (patch)
treeac9e614d11948b1fb0e38146fc6e875c5315bb2d /libempathy/empathy-tp-chat.c
parentd928abd933a716c44a6db244ea87dac566be2a5b (diff)
downloadgsoc2013-empathy-e5011edd94a51339ae21e2690fd90af652425549.tar
gsoc2013-empathy-e5011edd94a51339ae21e2690fd90af652425549.tar.gz
gsoc2013-empathy-e5011edd94a51339ae21e2690fd90af652425549.tar.bz2
gsoc2013-empathy-e5011edd94a51339ae21e2690fd90af652425549.tar.lz
gsoc2013-empathy-e5011edd94a51339ae21e2690fd90af652425549.tar.xz
gsoc2013-empathy-e5011edd94a51339ae21e2690fd90af652425549.tar.zst
gsoc2013-empathy-e5011edd94a51339ae21e2690fd90af652425549.zip
Create the EmpathyContactMonitor lazily if needed.
svn path=/trunk/; revision=2099
Diffstat (limited to 'libempathy/empathy-tp-chat.c')
-rw-r--r--libempathy/empathy-tp-chat.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c
index bda30edb4..8517c1c0d 100644
--- a/libempathy/empathy-tp-chat.c
+++ b/libempathy/empathy-tp-chat.c
@@ -259,6 +259,10 @@ tp_chat_get_monitor (EmpathyContactList *list)
priv = GET_PRIV (list);
+ if (priv->contact_monitor == NULL) {
+ priv->contact_monitor = empathy_contact_monitor_new_for_iface (list);
+ }
+
return priv->contact_monitor;
}
@@ -908,7 +912,10 @@ tp_chat_finalize (GObject *object)
g_object_unref (priv->group);
}
- g_object_unref (priv->contact_monitor);
+ if (priv->contact_monitor) {
+ g_object_unref (priv->contact_monitor);
+ }
+
g_object_unref (priv->factory);
g_object_unref (priv->user);
g_object_unref (priv->account);
@@ -1112,7 +1119,7 @@ empathy_tp_chat_init (EmpathyTpChat *chat)
EMPATHY_TYPE_TP_CHAT, EmpathyTpChatPriv);
chat->priv = priv;
- priv->contact_monitor = empathy_contact_monitor_new_for_proxy (EMPATHY_CONTACT_LIST (chat));
+ priv->contact_monitor = NULL;
}
static void