mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Hang Up when close chat window.
This commit is contained in:
parent
1989f366a7
commit
3deee001d4
@ -315,6 +315,8 @@ VOIPChatWidgetHolder::VOIPChatWidgetHolder(ChatWidget *chatWidget, VOIPNotify *n
|
||||
|
||||
VOIPChatWidgetHolder::~VOIPChatWidgetHolder()
|
||||
{
|
||||
hangupCall();
|
||||
|
||||
if(inputAudioDevice != NULL)
|
||||
inputAudioDevice->stop() ;
|
||||
|
||||
@ -492,7 +494,7 @@ void VOIPChatWidgetHolder::hangupCallAudio()
|
||||
atLeastOneChecked = true;
|
||||
}
|
||||
if (!atLeastOneChecked) {
|
||||
//Decline button or Friend hang up
|
||||
//Decline button ,Friend hang up or chat close
|
||||
if (recAudioRingTime != -1) {
|
||||
rsVOIP->sendVoipHangUpCall(mChatWidget->getChatId().toPeerId(), RS_VOIP_FLAGS_AUDIO_DATA);
|
||||
deleteButtonMap(RS_VOIP_FLAGS_AUDIO_DATA);
|
||||
@ -521,7 +523,7 @@ void VOIPChatWidgetHolder::hangupCallVideo()
|
||||
atLeastOneChecked = true;
|
||||
}
|
||||
if (!atLeastOneChecked) {
|
||||
//Decline button or Friend hang up
|
||||
//Decline button ,Friend hang up or chat close
|
||||
if (recVideoRingTime != -1) {
|
||||
rsVOIP->sendVoipHangUpCall(mChatWidget->getChatId().toPeerId(), RS_VOIP_FLAGS_VIDEO_DATA);
|
||||
deleteButtonMap(RS_VOIP_FLAGS_VIDEO_DATA);
|
||||
|
Loading…
Reference in New Issue
Block a user