From 24de9c7bcb6cc2c5ff53c247b176774f8687d374 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Fri, 5 Sep 2008 15:52:23 +0300 Subject: Add alerting indication after outgoing call indication --- audio/telephony-dummy.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/audio/telephony-dummy.c b/audio/telephony-dummy.c index 109cbf50..982279b6 100644 --- a/audio/telephony-dummy.c +++ b/audio/telephony-dummy.c @@ -81,6 +81,8 @@ int telephony_last_dialed_number_req(void) /* Notify outgoing call set-up successfully initiated */ telephony_update_indicator(dummy_indicators, "callsetup", EV_CALLSETUP_OUTGOING); + telephony_update_indicator(dummy_indicators, "callsetup", + EV_CALLSETUP_ALERTING); return 0; } @@ -108,6 +110,8 @@ int telephony_dial_number_req(const char *number) /* Notify outgoing call set-up successfully initiated */ telephony_update_indicator(dummy_indicators, "callsetup", EV_CALLSETUP_OUTGOING); + telephony_update_indicator(dummy_indicators, "callsetup", + EV_CALLSETUP_ALERTING); return 0; } @@ -125,6 +129,8 @@ static DBusMessage *outgoing_call(DBusConnection *conn, DBusMessage *msg, telephony_update_indicator(dummy_indicators, "callsetup", EV_CALLSETUP_OUTGOING); + telephony_update_indicator(dummy_indicators, "callsetup", + EV_CALLSETUP_ALERTING); return dbus_message_new_method_return(msg);; } -- cgit