| 444 | } |
| 445 | |
| 446 | wxString MacroCommands::GetCurrentParamsFor(const CommandID & command) |
| 447 | { |
| 448 | const PluginID& ID = PluginManager::Get().GetByCommandIdentifier(command); |
| 449 | if (ID.empty()) |
| 450 | { |
| 451 | return wxEmptyString; // effect not found. |
| 452 | } |
| 453 | |
| 454 | return EffectAndCommandPluginManager::Get().GetEffectParameters(ID); |
| 455 | } |
| 456 | |
| 457 | wxString MacroCommands::PromptForParamsFor( |
| 458 | const CommandID& command, const wxString& params, AudacityProject& project) |
nothing calls this directly
no test coverage detected