diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-01-10 00:13:29 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-10 00:13:29 +0800 |
commit | 7fc8348976a2a8512e4657cfe839487331d5af88 (patch) | |
tree | 0b16d770ee0082eb934bf1ac9e168c300fa6a8f3 /libempathy | |
parent | 12ebd87be6d9f8ccd654f2fb167f0c64724bf8f4 (diff) | |
download | gsoc2013-empathy-7fc8348976a2a8512e4657cfe839487331d5af88.tar gsoc2013-empathy-7fc8348976a2a8512e4657cfe839487331d5af88.tar.gz gsoc2013-empathy-7fc8348976a2a8512e4657cfe839487331d5af88.tar.bz2 gsoc2013-empathy-7fc8348976a2a8512e4657cfe839487331d5af88.tar.lz gsoc2013-empathy-7fc8348976a2a8512e4657cfe839487331d5af88.tar.xz gsoc2013-empathy-7fc8348976a2a8512e4657cfe839487331d5af88.tar.zst gsoc2013-empathy-7fc8348976a2a8512e4657cfe839487331d5af88.zip |
New style tubes don't have ides
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2152
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-tube-handler.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-tube-handler.c b/libempathy/empathy-tube-handler.c index 6131fa948..b2d4c085e 100644 --- a/libempathy/empathy-tube-handler.c +++ b/libempathy/empathy-tube-handler.c @@ -71,7 +71,7 @@ tube_handler_handle_tube_idle_cb (gpointer data) EmpathyTpTube *tube; static TpDBusDaemon *daemon = NULL; - DEBUG ("New tube to be handled id=%d", idle_data->id); + DEBUG ("New tube to be handled"); if (!daemon) daemon = tp_dbus_daemon_new (tp_get_bus ()); @@ -83,7 +83,7 @@ tube_handler_handle_tube_idle_cb (gpointer data) idle_data->handle, NULL); tp_channel_run_until_ready (channel, NULL, NULL); - tube = empathy_tp_tube_new (channel, idle_data->id); + tube = empathy_tp_tube_new (channel); g_signal_emit (idle_data->thandler, signals[NEW_TUBE], 0, tube); g_object_unref (tube); |