diff options
author | Guillaume Desmottes <gdesmott@gnome.org> | 2009-02-17 05:25:25 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-02-17 05:25:25 +0800 |
commit | 2d374c38c8d57fb0d2d3a55f2004d6e6d08d12e7 (patch) | |
tree | 4f1f7ad9bcc0c74495c2a6dd7b2381e0b14e3f84 /src | |
parent | 4ea44825231f8ddb45d11cce80393c4cd6b6939f (diff) | |
download | gsoc2013-empathy-2d374c38c8d57fb0d2d3a55f2004d6e6d08d12e7.tar gsoc2013-empathy-2d374c38c8d57fb0d2d3a55f2004d6e6d08d12e7.tar.gz gsoc2013-empathy-2d374c38c8d57fb0d2d3a55f2004d6e6d08d12e7.tar.bz2 gsoc2013-empathy-2d374c38c8d57fb0d2d3a55f2004d6e6d08d12e7.tar.lz gsoc2013-empathy-2d374c38c8d57fb0d2d3a55f2004d6e6d08d12e7.tar.xz gsoc2013-empathy-2d374c38c8d57fb0d2d3a55f2004d6e6d08d12e7.tar.zst gsoc2013-empathy-2d374c38c8d57fb0d2d3a55f2004d6e6d08d12e7.zip |
use TpTubeType instead of EmpathyTubeType
From: Guillaume Desmottes <gdesmott@gnome.org>
svn path=/trunk/; revision=2490
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-tube-dispatch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy-tube-dispatch.c b/src/empathy-tube-dispatch.c index c051dec2f..b1e7bce6d 100644 --- a/src/empathy-tube-dispatch.c +++ b/src/empathy-tube-dispatch.c @@ -147,7 +147,7 @@ empathy_tube_dispatch_constructed (GObject *object) GHashTable *properties; const gchar *service; const gchar *channel_type; - EmpathyTubeType type; + TpTubeType type; priv->dbus = tp_dbus_daemon_new (tp_get_bus()); @@ -161,13 +161,13 @@ empathy_tube_dispatch_constructed (GObject *object) if (!tp_strdiff (channel_type, EMP_IFACE_CHANNEL_TYPE_STREAM_TUBE)) { - type = EMPATHY_TYPE_STREAM_TUBE; + type = TP_TUBE_TYPE_STREAM; service = tp_asv_get_string (properties, EMP_IFACE_CHANNEL_TYPE_STREAM_TUBE ".Service"); } else if (!tp_strdiff (channel_type, EMP_IFACE_CHANNEL_TYPE_DBUS_TUBE)) { - type = EMPATHY_TYPE_DBUS_TUBE; + type = TP_TUBE_TYPE_DBUS; service = tp_asv_get_string (properties, EMP_IFACE_CHANNEL_TYPE_DBUS_TUBE ".ServiceName"); } |