diff options
| -rw-r--r-- | audio/audio-api.txt | 2 | ||||
| -rw-r--r-- | audio/headset.c | 4 | 
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 }  };  | 
