diff -r e7aa27f58ae1 -r e1b6206813b4 ipsservices/ipssosplugin/src/ipsplgconnectandrefreshfolderlist.cpp --- a/ipsservices/ipssosplugin/src/ipsplgconnectandrefreshfolderlist.cpp Tue Feb 02 00:02:40 2010 +0200 +++ b/ipsservices/ipssosplugin/src/ipsplgconnectandrefreshfolderlist.cpp Fri Feb 19 22:37:30 2010 +0200 @@ -17,7 +17,7 @@ */ -#include +#include #include "emailtrace.h" #include "ipsplgheaders.h" @@ -64,18 +64,18 @@ TFSMailMsgId& aMailboxId, MFSMailRequestObserver& aFSObserver, CIpsPlgTimerOperation& aTimer ) - : - CIpsPlgOnlineOperation( - aSession, - aPriority, - aObserverRequestStatus, - aTimer, - aMailboxId, - aFSObserver, - 0, // FSRequestId - EFalse), // SignallingAllowed - iState( EIdle ), - iMailboxId( aMailboxId ), + : + CIpsPlgOnlineOperation( + aSession, + aPriority, + aObserverRequestStatus, + aTimer, + aMailboxId, + aFSObserver, + 0, // FSRequestId + EFalse), // SignallingAllowed + iState( EIdle ), + iMailboxId( aMailboxId ), iSession( aSession ), iService( aService ), iOperation( NULL ), @@ -197,50 +197,50 @@ delete iOperation; iOperation = NULL; InvokeClientMtmAsyncFunctionL( - KIMAP4MTMConnect, - *iMsvEntry, - iService, - dummyParam ); + KIMAP4MTMConnect, + *iMsvEntry, + iService, + dummyParam ); iState = EConnecting; SetActive(); break; - case EConnecting: - { - // We have successfully completed connecting - - delete iOperation; - iOperation = NULL; - InvokeClientMtmAsyncFunctionL( - KIMAP4MTMSyncTree, - *iMsvEntry, - iService, - dummyParam ); - iState = ERefreshing; - SetActive(); - } - break; - case ERefreshing: - // We have successfully completed refreshing the folder list - delete iOperation; - iOperation = NULL; - iOperation = CIpsPlgDisconnectOp::NewL( - iSession, - iStatus, - iService, - *iTimer, - iMailboxId, - *observer, - NULL ); - iState = EDisconnecting; - SetActive(); - break; - case EDisconnecting: - iState = ECompleted; - CompleteObserver(); - break; - default: - User::Panic( KIpsPlgPanicCategory, EIpsPlgNoParameters ); - break; + case EConnecting: + { + // We have successfully completed connecting + + delete iOperation; + iOperation = NULL; + InvokeClientMtmAsyncFunctionL( + KIMAP4MTMSyncTree, + *iMsvEntry, + iService, + dummyParam ); + iState = ERefreshing; + SetActive(); + } + break; + case ERefreshing: + // We have successfully completed refreshing the folder list + delete iOperation; + iOperation = NULL; + iOperation = CIpsPlgDisconnectOp::NewL( + iSession, + iStatus, + iService, + *iTimer, + iMailboxId, + *observer, + NULL ); + iState = EDisconnecting; + SetActive(); + break; + case EDisconnecting: + iState = ECompleted; + CompleteObserver(); + break; + default: + User::Panic( KIpsPlgPanicCategory, EIpsPlgNoParameters ); + break; } }