diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2014-02-24 21:31:10 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2014-02-26 17:32:36 +0800 |
commit | 912bbee404f948ae85d8c5705857b7dde0595ea0 (patch) | |
tree | 1a360121f0d120980b1ec928f92d675c72d2a95a /libempathy-gtk | |
parent | 69becc7294ec42d528ec30abd43c2c5124f01ab9 (diff) | |
download | gsoc2013-empathy-912bbee404f948ae85d8c5705857b7dde0595ea0.tar gsoc2013-empathy-912bbee404f948ae85d8c5705857b7dde0595ea0.tar.gz gsoc2013-empathy-912bbee404f948ae85d8c5705857b7dde0595ea0.tar.bz2 gsoc2013-empathy-912bbee404f948ae85d8c5705857b7dde0595ea0.tar.lz gsoc2013-empathy-912bbee404f948ae85d8c5705857b7dde0595ea0.tar.xz gsoc2013-empathy-912bbee404f948ae85d8c5705857b7dde0595ea0.tar.zst gsoc2013-empathy-912bbee404f948ae85d8c5705857b7dde0595ea0.zip |
call-utils: inline call_new_with_streams()
We no longer support fallbacking to StreamedMedia so there is no point keeping
this static function.
https://bugzilla.gnome.org/show_bug.cgi?id=725070
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-call-utils.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/libempathy-gtk/empathy-call-utils.c b/libempathy-gtk/empathy-call-utils.c index 9542159a9..a235e7b99 100644 --- a/libempathy-gtk/empathy-call-utils.c +++ b/libempathy-gtk/empathy-call-utils.c @@ -113,9 +113,8 @@ create_call_channel_cb (GObject *source, show_call_error (error); } -/* Try to request a Call channel and fallback to StreamedMedia if that fails */ -static void -call_new_with_streams (const gchar *contact, +void +empathy_call_new_with_streams (const gchar *contact, TpAccount *account, gboolean initial_audio, gboolean initial_video, @@ -139,17 +138,6 @@ call_new_with_streams (const gchar *contact, g_object_unref (call_req); } -void -empathy_call_new_with_streams (const gchar *contact, - TpAccount *account, - gboolean initial_audio, - gboolean initial_video, - gint64 timestamp) -{ - call_new_with_streams (contact, account, initial_audio, initial_video, - timestamp); -} - /* Copied from telepathy-yell call-channel.c */ void empathy_call_channel_send_video (TpCallChannel *self, |