predictivesearch/PcsServer/src/CPcsServer.cpp
branchRCL_3
changeset 58 d4f567ce2e7c
parent 45 34879f5cfc63
child 64 c1e8ba0c2b16
--- a/predictivesearch/PcsServer/src/CPcsServer.cpp	Thu Jul 15 18:22:55 2010 +0300
+++ b/predictivesearch/PcsServer/src/CPcsServer.cpp	Thu Aug 19 09:41:07 2010 +0300
@@ -44,7 +44,7 @@
     self->StartL(KPcsServerName);
     CleanupStack::Pop(); 
     
-    PRINT ( _L("End CPcsServer::NewL") );
+     PRINT ( _L("End CPcsServer::NewL") );
     
     return self;
 }
@@ -70,18 +70,17 @@
 	iPcs = CPcsPluginInterface::NewL();
     
 	// Check if the phone is chinese feature id installed
-	iIsChineseVariant = IsChineseFeatureInitilizedL();
+	TBool isChineseVariant = IsChineseFeatureInitilizedL();
     // Create the plugin for the required algorithm
     // Matches the ECOM Plugin's display name definition in rss file
     // Check for the chinese feature id flag.
-	if(iIsChineseVariant) 
+	if(isChineseVariant) 
 	    {
 	    // Chinese variant phones. Use Algorithm 2
 	    PRINT ( _L("Enter CPcsServer::ConstructL() - Chinese Variant Phone Algorithm Instantiated") );
 	    TBuf<KAlgorithmNameMaxLen> algorithmName(KPcsAlgorithm_Chinese);
 	    iPcs->InstantiateAlgorithmL(algorithmName);
-	    
-	    
+	      
 	    }
 	else 
 	    {
@@ -151,12 +150,3 @@
     
     return chineseFeatureInitialized;
 }
-
-// ----------------------------------------------------------------------------
-// CPcsServer::IsChineseVariant() const
-// Returns ETrue if there is Chinese variant feature in phone
-// ---------------------------------------------------------------------------- 
-TBool CPcsServer::IsChineseVariant() const
-    {
-    return iIsChineseVariant;
-    }