From c4f86534b22db19d75f24cb1cff0ad6477ccfafb Mon Sep 17 00:00:00 2001 From: Amith Kumar Mahale Date: Wed, 17 Jul 2013 16:56:15 +0530 Subject: [PATCH] Fix for N_SE-46707 Change-Id: Ib0cae9e563483e7a8b60a6bc8b245da6b6bea530 Signed-off-by: Amith Kumar Mahale --- src/CallIncomingCallForm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CallIncomingCallForm.cpp b/src/CallIncomingCallForm.cpp index 34a1550..77812db 100644 --- a/src/CallIncomingCallForm.cpp +++ b/src/CallIncomingCallForm.cpp @@ -1598,7 +1598,7 @@ IncomingCallForm::CallDisconnected(void) { //check if no call option popup is shown, then remain on incoming call screen. //As user has neither accepted nor rejected incoming call. - if (__pOptionPopup == null) + if ((__pOptionPopup == null) || (__pOptionPopup->GetShowState() == false)) { return; } -- 2.7.4