diff -r 40a3f856b14d -r 41a7f70b3818 phoneapp/phoneuicontrol/src/cphonedtmfwaitchartimer.cpp --- a/phoneapp/phoneuicontrol/src/cphonedtmfwaitchartimer.cpp Thu Aug 19 09:54:27 2010 +0300 +++ b/phoneapp/phoneuicontrol/src/cphonedtmfwaitchartimer.cpp Tue Aug 31 15:14:29 2010 +0300 @@ -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