contacts_plat/predictivesearch_client_api/tsrc/PsClientTestSuite/src/pstestcontactshandler.cpp
branchRCL_3
changeset 39 a6539d1e8e43
parent 15 e8e3147d53eb
child 64 c1e8ba0c2b16
--- a/contacts_plat/predictivesearch_client_api/tsrc/PsClientTestSuite/src/pstestcontactshandler.cpp	Tue May 25 12:26:45 2010 +0300
+++ b/contacts_plat/predictivesearch_client_api/tsrc/PsClientTestSuite/src/pstestcontactshandler.cpp	Wed Jun 09 09:26:27 2010 +0300
@@ -109,7 +109,7 @@
 	}
 	else
 	{
-		 iStore = iContactManager->ContactStoresL().Find( TVPbkContactStoreUriPtr( VPbkContactStoreUris::DefaultCntDbUri() ) ); 	
+		iStore = iContactManager->ContactStoresL().Find( TVPbkContactStoreUriPtr( VPbkContactStoreUris::DefaultCntDbUri() ) ); 	
 	}
 
 	iStore->OpenL( *this ); 
@@ -128,10 +128,8 @@
 // ---------------------------------------------------------------------------------
 // Destructor
 // ---------------------------------------------------------------------------------
-
 CPcsTestContactsHandler::~CPcsTestContactsHandler() 
 {
-
 	delete iWait;
     iWait = NULL;
     
@@ -145,7 +143,7 @@
         iContactLinksToAddToGroup->ResetAndDestroy();
         delete iContactLinksToAddToGroup;
         }
-//plese note you shouldn't close stores before cleaning links arrays    
+    //plese note you shouldn't close stores before cleaning links arrays    
 	if ( iContactManager )
 	{
 	    TRAP_IGNORE(iContactManager->ContactStoresL().CloseAll( *this ));
@@ -155,10 +153,9 @@
 
 	if(iOp)
 	{
-		 delete iOp ;
-		 iOp = NULL;
+		delete iOp ;
+		iOp = NULL;
 	}
-
 }
 
 // ---------------------------------------------------------------------------
@@ -168,9 +165,9 @@
 {
     iOpenComplete = ETrue;
     if( iWait->IsStarted() )
-     {
+    {
  	    iWait->AsyncStop();
-     }
+    }
 }
     
 // ---------------------------------------------------------------------------
@@ -198,11 +195,10 @@
 void CPcsTestContactsHandler::HandleStoreEventL(MVPbkContactStore& /*aContactStore*/, 
                 TVPbkContactStoreEvent aStoreEvent)
 {
-
     if ( aStoreEvent.iEventType == iStoreEventToWaitFor )
-        {
+    {
         iExpectedStoreEventReceived = ETrue;
-        }
+    }
 
 	switch (aStoreEvent.iEventType) 
 	{
@@ -295,7 +291,6 @@
 // ---------------------------------------------------------------------------------
 // This fucntion deletes all the created contacts
 // ---------------------------------------------------------------------------------    
-
 void CPcsTestContactsHandler::DeleteAllCreatedContactsL()
 {
 	if(iContactsCreatedLinks->Count())
@@ -314,7 +309,6 @@
 // ---------------------------------------------------------------------------------
 // This fucntion adds a group 
 // ---------------------------------------------------------------------------------    
-
 void CPcsTestContactsHandler::AddGroupL(const TDesC& aGroupName)
 {
 	iGroupAdded = iStore->CreateNewContactGroupLC();
@@ -363,12 +357,12 @@
 // Stops main active scheduler loop if stop conditions are fullfiled
 // ---------------------------------------------------------------------------------
 void CPcsTestContactsHandler::StopSchedulerIfNothingToWaitFor()
-    {
-     if( iOperationComplete && iExpectedStoreEventReceived )
+{
+    if( iOperationComplete && iExpectedStoreEventReceived )
         {
         CActiveScheduler::Stop();
         }
-    }
+}
 
 // ---------------------------------------------------------------------------------
 // Called when a contact operation has succesfully completed.
@@ -537,4 +531,5 @@
             iGroupAdded->AddContactL(iContactLinksToAddToGroup->At(i));
     }
 }
+
 // End of file