aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2007-11-13 21:16:15 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-11-13 21:16:15 +0800
commita30e85bc00d2e9b929f2871429fedfbbe6684bb4 (patch)
tree0f62efa4e6b1dcc5cf09be74b18e682c4a76c908 /libempathy
parentbafbff4f82f0a2d94a460cfcd3d475f52df905db (diff)
downloadgsoc2013-empathy-a30e85bc00d2e9b929f2871429fedfbbe6684bb4.tar
gsoc2013-empathy-a30e85bc00d2e9b929f2871429fedfbbe6684bb4.tar.gz
gsoc2013-empathy-a30e85bc00d2e9b929f2871429fedfbbe6684bb4.tar.bz2
gsoc2013-empathy-a30e85bc00d2e9b929f2871429fedfbbe6684bb4.tar.lz
gsoc2013-empathy-a30e85bc00d2e9b929f2871429fedfbbe6684bb4.tar.xz
gsoc2013-empathy-a30e85bc00d2e9b929f2871429fedfbbe6684bb4.tar.zst
gsoc2013-empathy-a30e85bc00d2e9b929f2871429fedfbbe6684bb4.zip
Do not use deprecated tp_conn_new(), use tp_conn_new_without_connect()
2007-11-13 Xavier Claessens <xclaesse@gmail.com> * libempathy/empathy-chandler.c: * libempathy/empathy-filter.c: Do not use deprecated tp_conn_new(), use tp_conn_new_without_connect() instead. svn path=/trunk/; revision=436
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-chandler.c11
-rw-r--r--libempathy/empathy-filter.c12
2 files changed, 17 insertions, 6 deletions
diff --git a/libempathy/empathy-chandler.c b/libempathy/empathy-chandler.c
index 3586e97a4..2ebbde968 100644
--- a/libempathy/empathy-chandler.c
+++ b/libempathy/empathy-chandler.c
@@ -129,9 +129,14 @@ empathy_chandler_handle_channel (EmpathyChandler *chandler,
TpChan *tp_chan;
TpConn *tp_conn;
- tp_conn = tp_conn_new (tp_get_bus (),
- bus_name,
- connection);
+ tp_conn = tp_conn_new_without_connect (tp_get_bus (),
+ bus_name,
+ connection,
+ NULL,
+ error);
+ if (!tp_conn) {
+ return FALSE;
+ }
tp_chan = tp_chan_new (tp_get_bus(),
bus_name,
diff --git a/libempathy/empathy-filter.c b/libempathy/empathy-filter.c
index f28d182c1..700f9819b 100644
--- a/libempathy/empathy-filter.c
+++ b/libempathy/empathy-filter.c
@@ -214,9 +214,15 @@ empathy_filter_filter_channel (EmpathyFilter *filter,
priv = GET_PRIV (filter);
- tp_conn = tp_conn_new (tp_get_bus (),
- bus_name,
- connection);
+ tp_conn = tp_conn_new_without_connect (tp_get_bus (),
+ bus_name,
+ connection,
+ NULL,
+ error);
+ if (!tp_conn) {
+ return FALSE;
+ }
+
tp_chan = tp_chan_new (tp_get_bus(),
bus_name,