diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-11 18:43:34 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-11 21:10:43 +0800 |
commit | 6b5d8ab2badd9aee642a45b1c49e9aad265d201f (patch) | |
tree | aede257d72b8feebb762935e2a1305c8b4fbaa73 /src | |
parent | 5ff09cda5bad6b821509876c0fac51c667318602 (diff) | |
download | gsoc2013-empathy-6b5d8ab2badd9aee642a45b1c49e9aad265d201f.tar gsoc2013-empathy-6b5d8ab2badd9aee642a45b1c49e9aad265d201f.tar.gz gsoc2013-empathy-6b5d8ab2badd9aee642a45b1c49e9aad265d201f.tar.bz2 gsoc2013-empathy-6b5d8ab2badd9aee642a45b1c49e9aad265d201f.tar.lz gsoc2013-empathy-6b5d8ab2badd9aee642a45b1c49e9aad265d201f.tar.xz gsoc2013-empathy-6b5d8ab2badd9aee642a45b1c49e9aad265d201f.tar.zst gsoc2013-empathy-6b5d8ab2badd9aee642a45b1c49e9aad265d201f.zip |
use tp_channel_get_connection()
tp_channel_get_connection() has been deprecated.
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-call-window.c | 4 | ||||
-rw-r--r-- | src/empathy-chat-window.c | 4 | ||||
-rw-r--r-- | src/empathy-invite-participant-dialog.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 749b4c6f3..5a3b0d88a 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -3037,7 +3037,7 @@ media_stream_error_to_txt (EmpathyCallWindow *self, case TP_MEDIA_STREAM_ERROR_INVALID_CM_BEHAVIOR: tp_connection_parse_object_path ( - tp_channel_borrow_connection (TP_CHANNEL (call)), + tp_channel_get_connection (TP_CHANNEL (call)), NULL, &cm); url = g_strdup_printf ("http://bugs.freedesktop.org/enter_bug.cgi?" @@ -3124,7 +3124,7 @@ show_balance_error (EmpathyCallWindow *self) "call-channel", &call, NULL); - conn = tp_channel_borrow_connection (call); + conn = tp_channel_get_connection (call); g_object_unref (call); uri = tp_connection_get_balance_uri (conn); diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index 0c01617bb..6231b57b3 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -584,7 +584,7 @@ chat_window_conversation_menu_update (EmpathyChatWindow *self) if (tp_chat != NULL) { - connection = tp_channel_borrow_connection (TP_CHANNEL (tp_chat)); + connection = tp_channel_get_connection (TP_CHANNEL (tp_chat)); sensitive = empathy_tp_chat_can_add_contact (tp_chat) && (tp_connection_get_status (connection, NULL) == @@ -2037,7 +2037,7 @@ drag_data_received_individual_id (EmpathyChatWindow *self, goto out; } - conn = tp_channel_borrow_connection ((TpChannel *) chat); + conn = tp_channel_get_connection ((TpChannel *) chat); tp_contact = empathy_get_tp_contact_for_individual (individual, conn); if (tp_contact == NULL) { diff --git a/src/empathy-invite-participant-dialog.c b/src/empathy-invite-participant-dialog.c index ecbf00be9..8588b8484 100644 --- a/src/empathy-invite-participant-dialog.c +++ b/src/empathy-invite-participant-dialog.c @@ -114,7 +114,7 @@ get_tp_contact_for_chat (EmpathyInviteParticipantDialog *self, { TpConnection *chat_conn; - chat_conn = tp_channel_borrow_connection (TP_CHANNEL (self->priv->tp_chat)); + chat_conn = tp_channel_get_connection (TP_CHANNEL (self->priv->tp_chat)); if (chat_conn == NULL) return NULL; @@ -177,7 +177,7 @@ has_contact_list (EmpathyInviteParticipantDialog *self) { TpConnection *conn; - conn = tp_channel_borrow_connection (TP_CHANNEL (self->priv->tp_chat)); + conn = tp_channel_get_connection (TP_CHANNEL (self->priv->tp_chat)); return tp_proxy_has_interface_by_id (conn, TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_LIST); |