skins/AknSkins/oomplugin/aknskinsoomplugin.cpp
branchRCL_3
changeset 106 e4e3998ddda2
parent 54 08459e712984
child 107 9f95a5546443
equal deleted inserted replaced
100:9dbe1b043bea 106:e4e3998ddda2
   117 
   117 
   118 // -----------------------------------------------------------------------------
   118 // -----------------------------------------------------------------------------
   119 // Creates plugin.
   119 // Creates plugin.
   120 // -----------------------------------------------------------------------------
   120 // -----------------------------------------------------------------------------
   121 //
   121 //
   122 TAny* CreatePluginL()
   122 TAny* CreatePlugin()
   123     {
   123     {
   124     CAknSkinsOomMonitorPlugin* plugin = new(ELeave) CAknSkinsOomMonitorPlugin;
   124     CAknSkinsOomMonitorPlugin* plugin = new(ELeave) CAknSkinsOomMonitorPlugin;
   125     CleanupStack::PushL(plugin);
   125     CleanupStack::PushL(plugin);
   126     plugin->ConstructL();
   126     plugin->ConstructL();
   127     CleanupStack::Pop(plugin);
   127     CleanupStack::Pop(plugin);
   132 // Implementation table for plugin.
   132 // Implementation table for plugin.
   133 // -----------------------------------------------------------------------------
   133 // -----------------------------------------------------------------------------
   134 //
   134 //
   135 const TImplementationProxy ImplementationTable[] =
   135 const TImplementationProxy ImplementationTable[] =
   136     {
   136     {
   137     {{0x10207140}, ::CreatePluginL}
   137     {{0x10207140}, ::CreatePlugin}
   138     };
   138     };
   139 
   139 
   140 // -----------------------------------------------------------------------------
   140 // -----------------------------------------------------------------------------
   141 // ImplementationGroupProxy
   141 // ImplementationGroupProxy
   142 // -----------------------------------------------------------------------------
   142 // -----------------------------------------------------------------------------