diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-06-13 19:13:54 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-06-13 19:13:54 +0800 |
commit | 814548b3fe862f4ee1d8817bac989031eea983bc (patch) | |
tree | 5ba5e291e290567b061683fb9eb1fab2753f1ebd /src/empathy-call-window.c | |
parent | 21d5cc59e020f1a3b01028398aaa4e42cad0c3b2 (diff) | |
download | gsoc2013-empathy-814548b3fe862f4ee1d8817bac989031eea983bc.tar gsoc2013-empathy-814548b3fe862f4ee1d8817bac989031eea983bc.tar.gz gsoc2013-empathy-814548b3fe862f4ee1d8817bac989031eea983bc.tar.bz2 gsoc2013-empathy-814548b3fe862f4ee1d8817bac989031eea983bc.tar.lz gsoc2013-empathy-814548b3fe862f4ee1d8817bac989031eea983bc.tar.xz gsoc2013-empathy-814548b3fe862f4ee1d8817bac989031eea983bc.tar.zst gsoc2013-empathy-814548b3fe862f4ee1d8817bac989031eea983bc.zip |
Replace the has-dtmf property by empathy_tp_call_has_dtmf() (Alban Crequy)
svn path=/trunk/; revision=1165
Diffstat (limited to 'src/empathy-call-window.c')
-rw-r--r-- | src/empathy-call-window.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 02df753a7..c5e7e6419 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -340,7 +340,6 @@ call_window_update (EmpathyCallWindow *window) EmpathyTpCallStream *audio_stream; EmpathyTpCallStream *video_stream; gboolean is_incoming; - gboolean has_dtmf; gchar *title; g_object_get (window->call, @@ -349,7 +348,6 @@ call_window_update (EmpathyCallWindow *window) "video-stream", &video_stream, "contact", &contact, "is-incoming", &is_incoming, - "has-dtmf", &has_dtmf, NULL); if (video_stream->state > audio_stream->state) @@ -361,7 +359,7 @@ call_window_update (EmpathyCallWindow *window) "is-incoming: %d video-stream direction: %d", window->status, stream_state, is_incoming, video_stream->direction); - if (has_dtmf) + if (empathy_tp_call_has_dtmf (window->call)) { gtk_widget_show (window->keypad_expander); } |