| 86 | } |
| 87 | |
| 88 | TranslatableString |
| 89 | EffectAndCommandPluginManager::GetCommandTip(const PluginID& ID) |
| 90 | { |
| 91 | if (auto pEff = EffectManager::Get().GetEffect(ID)) |
| 92 | return pEff->GetDefinition().GetDescription(); |
| 93 | AudacityCommand* pCom = GetAudacityCommand(ID); |
| 94 | if (pCom) |
| 95 | return pCom->GetDescription(); |
| 96 | |
| 97 | return {}; |
| 98 | } |
| 99 | |
| 100 | void EffectAndCommandPluginManager::GetCommandDefinition( |
| 101 | const PluginID& ID, const CommandContext& context, int flags) |
nothing calls this directly
no test coverage detected