diff -r b13141f05c3d -r b5fbb9b25d57 meetingrequest/mrbcplugin/src/cmrbcplugin.cpp --- a/meetingrequest/mrbcplugin/src/cmrbcplugin.cpp Tue Apr 27 16:20:14 2010 +0300 +++ b/meetingrequest/mrbcplugin/src/cmrbcplugin.cpp Tue May 11 15:57:15 2010 +0300 @@ -29,10 +29,10 @@ #include #include #include -#include +#include #include #include -#include +#include #include #include #include @@ -150,7 +150,7 @@ } break; } - + default: { enabled = EFalse; @@ -482,7 +482,7 @@ { CMRBCEventPlugin* eventPlugin = PluginByUidL( TUid::Uid( KMRBCMREventPluginImplementationUID ) ); - + if ( eventPlugin ) { cmdHandler = eventPlugin->CommandHandler(); @@ -494,7 +494,7 @@ for ( TInt i(0); i < pluginCount && !cmdHandler; ++i ) { TMRBCPluginCommand pluginCommand; - + TInt err = iPluginResources[i]->Command( aCommand, pluginCommand ); if ( KErrNone == err ) { @@ -502,10 +502,10 @@ if ( pluginCommand.CheckEntryType() ) { iEntryLoader->UpdateEntryFromDatabaseL(); - + TBCPluginEventType eventType( EventTypeL( *iServices, iEntryLoader->Entry() ) ); - + if ( iPluginResources[i]->SupportsType( eventType) && IsCommandSupportedForEntryTypeL( aCommand, eventType ) ) { @@ -529,7 +529,7 @@ CMRBCEventPlugin* CMRBCPlugin::PluginByUidL( TUid aUid ) { CMRBCEventPlugin* plugin = NULL; - + for ( TInt i = 0; i < iPluginResources.Count() && !plugin; ++i ) { if ( iPluginResources[ i ]->PluginImplUid() == aUid ) @@ -537,7 +537,7 @@ plugin = &( iPluginResources[ i ]->PluginL() ); } } - + return plugin; }