meetingrequest/mrbcplugin/src/cmrbcplugin.cpp
branchRCL_3
changeset 16 b5fbb9b25d57
parent 12 4ce476e64c59
--- 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 <eikmenup.h>
 #include <bautils.h>
 #include <ecom/ecom.h>
-#include <meetingrequestuids.hrh>
+#include <MeetingRequestUids.hrh>
 #include <ct/rcpointerarray.h>
 #include <data_caging_path_literals.hrh>
-#include <caleninterimutils2.h>
+#include <CalenInterimUtils2.h>
 #include <calencommands.hrh>
 #include <featdiscovery.h>
 #include <bldvariant.hrh>
@@ -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;
     }