--- a/phoneapp/phoneuicontrol/src/cphonedtmfwaitchartimer.cpp Tue Feb 02 00:10:04 2010 +0200
+++ b/phoneapp/phoneuicontrol/src/cphonedtmfwaitchartimer.cpp Fri Mar 19 09:28:42 2010 +0200
@@ -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