contacts_plat/predictivesearch_client_api/tsrc/PsClientTestSuite/src/pstestcontactshandler.cpp
branchRCL_3
changeset 6 e8e3147d53eb
parent 0 e686773b3f54
child 13 a6539d1e8e43
--- a/contacts_plat/predictivesearch_client_api/tsrc/PsClientTestSuite/src/pstestcontactshandler.cpp	Fri Mar 12 15:41:25 2010 +0200
+++ b/contacts_plat/predictivesearch_client_api/tsrc/PsClientTestSuite/src/pstestcontactshandler.cpp	Mon Mar 15 12:39:26 2010 +0200
@@ -52,11 +52,11 @@
 // ---------------------------------------------------------------------------------
 // 1st phase constructor
 // ---------------------------------------------------------------------------------
-CPcsTestContactsHandler* CPcsTestContactsHandler::NewL(TBool SimStoreOnly)
+CPcsTestContactsHandler* CPcsTestContactsHandler::NewL(TBool aSimStoreOnly)
 {
 	CPcsTestContactsHandler* self = new ( ELeave ) CPcsTestContactsHandler();
 	CleanupStack::PushL( self );
-	self->ConstructL(SimStoreOnly);
+	self->ConstructL(aSimStoreOnly);
 	CleanupStack::Pop( self );
 	
 	return self;
@@ -77,13 +77,13 @@
 // ---------------------------------------------------------------------------------
 // 2nd phase constructor
 // ---------------------------------------------------------------------------------
-void CPcsTestContactsHandler::ConstructL(TBool SimStoreOnly)
+void CPcsTestContactsHandler::ConstructL(TBool aSimStoreOnly)
 {
 	iOperationComplete = EFalse;
 
 	// initialize virtual phonebook with phonebook and sim contact uris.
 	CVPbkContactStoreUriArray* uriArray = CVPbkContactStoreUriArray::NewLC();
-	if(SimStoreOnly)
+	if(aSimStoreOnly)
 	{
 		uriArray->AppendL( TVPbkContactStoreUriPtr( VPbkContactStoreUris::SimGlobalAdnUri() ) );
 	}
@@ -103,7 +103,7 @@
 
 	// Open al the stores
 	iContactManager->ContactStoresL().OpenAllL( *this );
-	if(SimStoreOnly)
+	if(aSimStoreOnly)
 	{
 		iStore = iContactManager->ContactStoresL().Find( TVPbkContactStoreUriPtr( VPbkContactStoreUris::SimGlobalAdnUri() ) );
 	}