| 75 | } |
| 76 | |
| 77 | ManualPageID EffectAndCommandPluginManager::GetCommandUrl(const PluginID& ID) |
| 78 | { |
| 79 | if (auto pEff = EffectManager::Get().GetEffect(ID)) |
| 80 | return pEff->GetDefinition().ManualPage(); |
| 81 | AudacityCommand* pCom = GetAudacityCommand(ID); |
| 82 | if (pCom) |
| 83 | return pCom->ManualPage(); |
| 84 | |
| 85 | return wxEmptyString; |
| 86 | } |
| 87 | |
| 88 | TranslatableString |
| 89 | EffectAndCommandPluginManager::GetCommandTip(const PluginID& ID) |
nothing calls this directly
no test coverage detected