phoneapp/phoneuicontrol/src/cphonedtmfwaitchartimer.cpp
branchRCL_3
changeset 62 5266b1f337bd
parent 61 41a7f70b3818
--- a/phoneapp/phoneuicontrol/src/cphonedtmfwaitchartimer.cpp	Tue Aug 31 15:14:29 2010 +0300
+++ b/phoneapp/phoneuicontrol/src/cphonedtmfwaitchartimer.cpp	Wed Sep 01 12:30:10 2010 +0100
@@ -31,23 +31,23 @@
 // -----------------------------------------------------------------------------
 //
 CPhoneDtmfWaitCharTimer::CPhoneDtmfWaitCharTimer( MPhoneStateMachine* aStateMachine ) :
-    iTimer( NULL ),
-    iStateMachine( aStateMachine )
-    {
-        
-    }
+	iTimer( NULL ),
+	iStateMachine( aStateMachine )
+	{
+		
+	}
 
 // Destructor
 CPhoneDtmfWaitCharTimer::~CPhoneDtmfWaitCharTimer()
     {
     if( iTimer )
-        {
-        if( iTimer->IsActive() )
-            {
-            iTimer->CancelTimer();              
-            }
-        }
-        delete iTimer;
+	    {
+		if( iTimer->IsActive() )
+			{
+			iTimer->CancelTimer();				
+			}
+	    }
+	    delete iTimer;
     }
 
 // -----------------------------------------------------------
@@ -86,7 +86,7 @@
 void CPhoneDtmfWaitCharTimer::HandleTimeOutL()
     {
     __LOGMETHODSTARTEND( EPhoneControl, 
-        "CPhoneDtmfWaitCharTimer::HandleTimeOutL( ) ");
+    	"CPhoneDtmfWaitCharTimer::HandleTimeOutL( ) ");
     
     iStateMachine->SendPhoneEngineMessage( 
         MPEPhoneModel::EPEMessageContinueDTMFSending );
@@ -97,20 +97,20 @@
 // ---------------------------------------------------------
 //
 void CPhoneDtmfWaitCharTimer::ButtonPressedL()
-    {
-    if( !iTimer )
-        {
-        iTimer = CPhoneTimer::NewL();           
-        }
-    else
-        {
-        if( iTimer->IsActive() )
-            {
-            iTimer->CancelTimer();              
-            }
-        }   
-    
-    iTimer->After( KDtmfWaitNoteTimeoutValue, this );   
-    }
+	{
+	if( !iTimer )
+		{
+		iTimer = CPhoneTimer::NewL();			
+		}
+	else
+		{
+		if( iTimer->IsActive() )
+			{
+			iTimer->CancelTimer();				
+			}
+		}	
+	
+	iTimer->After( KDtmfWaitNoteTimeoutValue, this );	
+	}
 
 // End of File