| 1300 | } |
| 1301 | |
| 1302 | PluginSpec *PluginManagerPrivate::pluginByName(const QString &name) const |
| 1303 | { |
| 1304 | foreach (PluginSpec *spec, pluginSpecs) |
| 1305 | if (spec->name() == name) |
| 1306 | return spec; |
| 1307 | return 0; |
| 1308 | } |
| 1309 | |
| 1310 | void PluginManagerPrivate::initProfiling() |
| 1311 | { |
no test coverage detected