| 1293 | } |
| 1294 | |
| 1295 | PluginID PluginManager::OldGetID(const EffectDefinitionInterface* effect) |
| 1296 | { |
| 1297 | return wxString::Format(wxT("%s_%s_%s_%s_%s"), |
| 1298 | GetPluginTypeString(PluginTypeEffect), |
| 1299 | effect->GetFamily().Internal(), |
| 1300 | effect->GetVendor().Internal(), |
| 1301 | effect->GetSymbol().Internal(), |
| 1302 | effect->GetPath()); |
| 1303 | } |
| 1304 | |
| 1305 | PluginID PluginManager::GetID(const EffectDefinitionInterface* effect) |
| 1306 | { |
no test coverage detected