MCPcopy Create free account
hub / github.com/audacity/audacity / GetEffectName

Function GetEffectName

src/RealtimeEffectPanel.cpp:252–260  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

250 }
251
252 TranslatableString GetEffectName(RealtimeEffectState& state)
253 {
254 const auto &ID = state.GetID();
255 const auto desc = GetPlugin(ID);
256 return desc
257 ? desc->GetSymbol().Msgid()
258 : XO("%s (missing)")
259 .Format(PluginManager::GetEffectNameFromID(ID).GET());
260 }
261
262 template <typename Visitor>
263 void VisitRealtimeEffectStateUIs(const RealtimeEffectList& effects, Visitor&& visitor)

Callers 4

CreateMethod · 0.85
SetEffectMethod · 0.85
RemoveFromListMethod · 0.85
OnChangeButtonClickedMethod · 0.85

Calls 3

GetPluginFunction · 0.85
GetIDMethod · 0.45
GetSymbolMethod · 0.45

Tested by

no test coverage detected