| 112 | } |
| 113 | |
| 114 | void PluginManager::onNewEditor( UICodeEditor* editor ) { |
| 115 | for ( auto& plugin : mPlugins ) |
| 116 | editor->registerPlugin( plugin.second ); |
| 117 | } |
| 118 | |
| 119 | void PluginManager::setPluginsEnabled( const std::map<std::string, bool>& pluginsEnabled, |
| 120 | bool sync ) { |
no test coverage detected