phoneapp/phoneuistates/src/cphonesingleandwaiting.cpp
branchRCL_3
changeset 69 8baf28733c3d
parent 62 5266b1f337bd
child 81 c26cc2a7c548
--- a/phoneapp/phoneuistates/src/cphonesingleandwaiting.cpp	Wed Sep 01 12:30:10 2010 +0100
+++ b/phoneapp/phoneuistates/src/cphonesingleandwaiting.cpp	Tue Sep 14 21:18:17 2010 +0300
@@ -372,7 +372,7 @@
     if( iSingleCallId == aCallId )
         {
         // Idle message came for active call
-        BeginUiUpdateLC();
+        TransitionHandlerL().BeginUiUpdateLC();
 
         // Remove call
         iViewCommandHandle->ExecuteCommandL( EPhoneViewRemoveCallHeader, aCallId );
@@ -423,14 +423,14 @@
             // Play ringtone
             SetRingingTonePlaybackL( callStateData.CallId() );
             }
-        EndUiUpdate();
+        TransitionHandlerL().EndUiUpdate();
         SetToolbarDimming( ETrue );
 
         iStateMachine->ChangeState( EPhoneStateIncoming );
         }
     else
         {
-        BeginUiUpdateLC();
+        TransitionHandlerL().BeginUiUpdateLC();
 
         // Remove call
         iViewCommandHandle->ExecuteCommandL( EPhoneViewRemoveCallHeader, aCallId );
@@ -473,7 +473,7 @@
             }
         
         SetTouchPaneButtons( EPhoneIncallButtons );
-        EndUiUpdate();
+        TransitionHandlerL().EndUiUpdate();
         // CBA updates in above if-else conditions
         iStateMachine->ChangeState( EPhoneStateSingle );
         }
@@ -583,7 +583,7 @@
     {
     __LOGMETHODSTARTEND( EPhoneUIStates,
         "CPhoneSingleAndWaiting::MakeStateTransitionToTwoSinglesL() ");
-    BeginUiUpdateLC();
+    TransitionHandlerL().BeginUiUpdateLC();
     UpdateRemoteInfoDataL ( aCallId );
     // Show bubble
     TPhoneCmdParamCallHeaderData callHeaderParam;
@@ -618,7 +618,7 @@
         }
     
     SetTouchPaneButtons( EPhoneTwoSinglesButtons );
-    EndUiUpdate();
+    TransitionHandlerL().EndUiUpdate();
     // CBA updates in above if-else conditions
     iStateMachine->ChangeState( EPhoneStateTwoSingles );
     }