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

Method DoAudacityCommand

src/EffectAndCommandPluginManager.cpp:26–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24}
25
26bool EffectAndCommandPluginManager::DoAudacityCommand(
27 const PluginID& ID, const CommandContext& context,
28 bool shouldPrompt /* = true */)
29
30{
31 EffectManager::Get().SetSkipStateFlag(false);
32 AudacityCommand* command = GetAudacityCommand(ID);
33
34 if (!command)
35 {
36 return false;
37 }
38
39 bool res = command->DoAudacityCommand(context, shouldPrompt);
40
41 return res;
42}
43
44AudacityCommand*
45EffectAndCommandPluginManager::GetAudacityCommand(const PluginID& ID)

Callers

nothing calls this directly

Calls 2

GetFunction · 0.85
SetSkipStateFlagMethod · 0.80

Tested by

no test coverage detected