summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2008-01-09 03:00:22 +0000
committerJohan Hedberg <johan.hedberg@nokia.com>2008-01-09 03:00:22 +0000
commit466b76b3f3eab30328476746a964be2c5cbfe869 (patch)
treeebfc124ecd6bbfa9b574c75db8962f5bdae797d0 /audio
parent40d383bb1ed20bcc638e738c8d0fb7a79008b126 (diff)
TerminateCall signal should be called CallTerminated
Diffstat (limited to 'audio')
-rw-r--r--audio/audio-api.txt2
-rw-r--r--audio/headset.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/audio/audio-api.txt b/audio/audio-api.txt
index a1af06b8..da6a7aab 100644
--- a/audio/audio-api.txt
+++ b/audio/audio-api.txt
@@ -218,7 +218,7 @@ Signals void AnswerRequested()
The microphone gain changed.
- void TerminateCall()
+ void CallTerminated()
Sent when an ongoing call is terminated.
diff --git a/audio/headset.c b/audio/headset.c
index b14261ce..1a884b65 100644
--- a/audio/headset.c
+++ b/audio/headset.c
@@ -249,7 +249,7 @@ static int terminate_call(struct device *device, const char *buf)
int err;
dbus_connection_emit_signal(device->conn, device->path,
- AUDIO_HEADSET_INTERFACE, "TerminateCall",
+ AUDIO_HEADSET_INTERFACE, "CallTerminated",
DBUS_TYPE_INVALID);
if (hs->ring_timer) {
@@ -1472,7 +1472,7 @@ static DBusSignalVTable headset_signals[] = {
{ "Playing", "" },
{ "SpeakerGainChanged", "q" },
{ "MicrophoneGainChanged", "q" },
- { "TerminateCall", "" },
+ { "CallTerminated", "" },
{ NULL, NULL }
};