aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-06-13 19:13:54 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-06-13 19:13:54 +0800
commit387ed7f439ee962b956e398cb5c36f3aeadbb72d (patch)
tree5ba5e291e290567b061683fb9eb1fab2753f1ebd /src
parent5282d3ac3eb46c37cf87998c6140b72ed42f64dd (diff)
downloadgsoc2013-empathy-387ed7f439ee962b956e398cb5c36f3aeadbb72d.tar
gsoc2013-empathy-387ed7f439ee962b956e398cb5c36f3aeadbb72d.tar.gz
gsoc2013-empathy-387ed7f439ee962b956e398cb5c36f3aeadbb72d.tar.bz2
gsoc2013-empathy-387ed7f439ee962b956e398cb5c36f3aeadbb72d.tar.lz
gsoc2013-empathy-387ed7f439ee962b956e398cb5c36f3aeadbb72d.tar.xz
gsoc2013-empathy-387ed7f439ee962b956e398cb5c36f3aeadbb72d.tar.zst
gsoc2013-empathy-387ed7f439ee962b956e398cb5c36f3aeadbb72d.zip
Replace the has-dtmf property by empathy_tp_call_has_dtmf() (Alban Crequy)
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@1165 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'src')
-rw-r--r--src/empathy-call-window.c4
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);
}