diff -r 26645d81f48d -r cc28652e0254 featuremgmt/featuremgr/src/serverexe/featmgrserver.cpp --- a/featuremgmt/featuremgr/src/serverexe/featmgrserver.cpp Tue Aug 31 16:57:14 2010 +0300 +++ b/featuremgmt/featuremgr/src/serverexe/featmgrserver.cpp Wed Sep 01 12:39:58 2010 +0100 @@ -317,13 +317,9 @@ TBool ret( EFalse ); // Use ECom to read information about existing interface implementations -#ifndef EXTENDED_FEATURE_MANAGER_TEST - _LIT8( KResolverString, "" ); -#else - _LIT8( KResolverString, "efmtestplugin" ); //In test server we only want test plugins. -#endif + _LIT8( KEmptyString, "" ); TEComResolverParams resolverParams; - resolverParams.SetDataType (KResolverString); + resolverParams.SetDataType (KEmptyString); resolverParams.SetWildcardMatch (ETrue); TCleanupItem cleanupItem( ResetAndDestroyArray, &implInfoArray ); @@ -331,8 +327,9 @@ TIMESTAMP( "CFeatMgrServer::LoadPluginsL - ListImplementationsL start: " ) REComSession::ListImplementationsL( KFeatureInfoPluginInterfaceUid, +#ifndef EXTENDED_FEATURE_MANAGER_TEST resolverParams, -#ifndef EXTENDED_FEATURE_MANAGER_TEST + KRomOnlyResolverUid, #endif implInfoArray);