diff options
author | Marco Bascetta <marco.bascetta@sadel.it> | 2015-06-04 09:24:36 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2015-08-02 10:39:48 +0200 |
commit | 74325b547add635b9e3916091d01e0b506bc4eb2 (patch) | |
tree | ff5ba4b5dbf059cfdd4a7fc983ae6cc182362ec0 /src/mm-call-list.c | |
parent | 2ac5d620c458ddc8771ae6c8789608b87d58f56b (diff) |
core,libmm-glib,cli,voice: Replaced 'SendTone' method and 'ToneReceived' signal with 'SendDtmf' and 'DtmfReceived'
Diffstat (limited to 'src/mm-call-list.c')
-rw-r--r-- | src/mm-call-list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-call-list.c b/src/mm-call-list.c index d15db686..056e2932 100644 --- a/src/mm-call-list.c +++ b/src/mm-call-list.c @@ -189,7 +189,7 @@ MMBaseCall* mm_call_list_get_first_non_terminated_call(MMCallList *self) return call; } -gboolean mm_call_list_send_dtmf_to_active_calls(MMCallList *self, gchar *tone) +gboolean mm_call_list_send_dtmf_to_active_calls(MMCallList *self, gchar *dtmf) { gboolean signaled = FALSE; GList *l; @@ -205,7 +205,7 @@ gboolean mm_call_list_send_dtmf_to_active_calls(MMCallList *self, gchar *tone) if( state == MM_CALL_STATE_ACTIVE ) { signaled = TRUE; - mm_base_call_received_dtmf(MM_BASE_CALL (l->data), tone); + mm_base_call_received_dtmf(MM_BASE_CALL (l->data), dtmf); } } |