[empathy] empathy_tp_call_get_connection_manager: use the account directly



commit 4454890cf434cece46d5cf56b3e23b500cb6ac43
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Thu Aug 12 16:37:52 2010 +0200

    empathy_tp_call_get_connection_manager: use the account directly

 libempathy/empathy-tp-call.c |   15 +--------------
 1 files changed, 1 insertions(+), 14 deletions(-)
---
diff --git a/libempathy/empathy-tp-call.c b/libempathy/empathy-tp-call.c
index 97b8bce..66fd3f8 100644
--- a/libempathy/empathy-tp-call.c
+++ b/libempathy/empathy-tp-call.c
@@ -775,21 +775,8 @@ const gchar *
 empathy_tp_call_get_connection_manager (EmpathyTpCall *self)
 {
   EmpathyTpCallPriv *priv = GET_PRIV (self);
-  TpConnection *conn;
-  TpAccount *account;
-
-  if (priv->channel == NULL)
-    return NULL;
-
-  conn = tp_channel_borrow_connection (priv->channel);
-  if (conn == NULL)
-    return NULL;
-
-  account = empathy_get_account_for_connection (conn);
-  if (account == NULL)
-    return NULL;
 
-  return tp_account_get_connection_manager (account);
+  return tp_account_get_connection_manager (priv->account);
 }
 
 gboolean



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