summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2008-09-05 15:52:23 +0300
committerJohan Hedberg <johan.hedberg@nokia.com>2008-09-05 15:52:23 +0300
commit24de9c7bcb6cc2c5ff53c247b176774f8687d374 (patch)
tree0fccddc2f44acb2d784a0abe2f8fbe0ab3442735
parent725ef0d3eb71bb2093343625091c9de9b1d02b14 (diff)
Add alerting indication after outgoing call indication
-rw-r--r--audio/telephony-dummy.c6
1 files changed, 6 insertions, 0 deletions
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);;
}