--- a/phoneapp/phoneuistates/src/cphoneconferenceandwaiting.cpp Wed Sep 01 12:30:10 2010 +0100
+++ b/phoneapp/phoneuistates/src/cphoneconferenceandwaiting.cpp Tue Sep 14 21:18:17 2010 +0300
@@ -265,7 +265,7 @@
void CPhoneConferenceAndWaiting::MakeStateTransitionToConferenceAndSingleL( TInt aCallId )
{
__LOGMETHODSTARTEND(EPhoneUIStates, "CPhoneConferenceAndWaiting::MakeStateTransitionToConferenceAndSingleL()");
- BeginUiUpdateLC();
+ TransitionHandlerL().BeginUiUpdateLC();
UpdateRemoteInfoDataL ( aCallId );
if ( IsConferenceBubbleInSelectionMode() )
@@ -291,7 +291,7 @@
SetTouchPaneButtons( EPhoneConferenceAndSingleButtons );
SetTouchPaneButtonDisabled( EPhoneInCallCmdPrivate );
- EndUiUpdate();
+ TransitionHandlerL().EndUiUpdate();
// CBA updates in above if-else conditions
iStateMachine->ChangeState( EPhoneStateConferenceAndSingle );
}
@@ -316,7 +316,7 @@
if( iRingingCallId == aCallId )
{
- BeginUiUpdateLC();
+ TransitionHandlerL().BeginUiUpdateLC();
iViewCommandHandle->ExecuteCommandL( EPhoneViewMenuBarClose );
iViewCommandHandle->ExecuteCommandL( EPhoneViewRemoveCallHeader, aCallId );
@@ -351,7 +351,7 @@
{
SetTouchPaneButtons( EPhoneConferenceButtons );
}
- EndUiUpdate();
+ TransitionHandlerL().EndUiUpdate();
// CBA updates in above if-else conditions
iStateMachine->ChangeState( EPhoneStateConference );
}
@@ -376,7 +376,7 @@
void CPhoneConferenceAndWaiting::HandleConferenceIdleL()
{
__LOGMETHODSTARTEND( EPhoneUIStates, "CPhoneConferenceAndWaiting::HandleConferenceIdleL()");
- BeginUiUpdateLC();
+ TransitionHandlerL().BeginUiUpdateLC();
iViewCommandHandle->ExecuteCommandL( EPhoneViewRemoveConferenceBubble );
iViewCommandHandle->ExecuteCommandL( EPhoneViewMenuBarClose );
TPhoneCmdParamInteger activeCallCount;
@@ -449,7 +449,7 @@
// come earlier than idle for conference member
break;
}
- EndUiUpdate();
+ TransitionHandlerL().EndUiUpdate();
}
// -----------------------------------------------------------
@@ -494,7 +494,7 @@
__LOGMETHODSTARTEND( EPhoneUIStates,
"CPhoneConferenceAndWaiting::HandleWentOneToOneL()");
- BeginUiUpdateLC();
+ TransitionHandlerL().BeginUiUpdateLC();
// Update conference bubble
iViewCommandHandle->ExecuteCommandL(
@@ -523,7 +523,7 @@
// Go to Conference And Single And Waiting state
iStateMachine->ChangeState( EPhoneStateConferenceAndSingleAndWaiting );
}
- EndUiUpdate();
+ TransitionHandlerL().EndUiUpdate();
}
// End of File