equal
deleted
inserted
replaced
117 |
117 |
118 // ----------------------------------------------------------------------------- |
118 // ----------------------------------------------------------------------------- |
119 // Creates plugin. |
119 // Creates plugin. |
120 // ----------------------------------------------------------------------------- |
120 // ----------------------------------------------------------------------------- |
121 // |
121 // |
122 TAny* CreatePlugin() |
122 TAny* CreatePluginL() |
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}, ::CreatePlugin} |
137 {{0x10207140}, ::CreatePluginL} |
138 }; |
138 }; |
139 |
139 |
140 // ----------------------------------------------------------------------------- |
140 // ----------------------------------------------------------------------------- |
141 // ImplementationGroupProxy |
141 // ImplementationGroupProxy |
142 // ----------------------------------------------------------------------------- |
142 // ----------------------------------------------------------------------------- |