diff -r 2666d9724c76 -r d4f567ce2e7c predictivesearch/PcsServer/src/CPcsServer.cpp --- 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 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; - }