From: Amith Kumar Mahale Date: Wed, 7 Aug 2013 07:05:58 +0000 (+0530) Subject: Fix for Call sate not set properly when there is 1 waiting and 1 active call and... X-Git-Tag: 2.2_release^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=d5928412c25cfdb6643680a94f67a94652796cce;p=apps%2Fosp%2FCall.git Fix for Call sate not set properly when there is 1 waiting and 1 active call and Active call gets disconnected Change-Id: Ic8b8c10b6da3cab9fcb1406e23559d9b7f0ba9b7 Signed-off-by: Amith Kumar Mahale --- diff --git a/src/CallPresentationModel.cpp b/src/CallPresentationModel.cpp index e91d6d0..55b363d 100644 --- a/src/CallPresentationModel.cpp +++ b/src/CallPresentationModel.cpp @@ -655,7 +655,11 @@ CallPresentationModel::HandleCallDisconnected(bool isLastCall, Tizen::Base::Coll SetMuteStatus(false); if(__pSettingsPresentor != null) { + //Check if there is a incoming call or dialing call present before setting the status + if(IsIncomingorDialingCallPresent() == false) + { __pSettingsPresentor->SetCallState(CALL_STATE_CALL_OFF); + } } } else