1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-04 13:27:39 +02:00

Move static EffectManager::DoEffect into new namespace

This commit is contained in:
Paul Licameli
2019-07-21 13:01:01 -04:00
parent 23a0206d2a
commit 91c45dd32a
9 changed files with 46 additions and 70 deletions

View File

@@ -796,7 +796,7 @@ bool MacroCommands::ApplyEffectCommand(
EffectManager::kDontRepeatLast);
else
// and apply the effect...
res = EffectManager::DoEffect(ID,
res = EffectUI::DoEffect(ID,
Context,
EffectManager::kConfigured |
EffectManager::kSkipState |
@@ -831,7 +831,7 @@ bool MacroCommands::HandleTextualCommand( CommandManager &commandManager,
{
if (em.GetCommandIdentifier(plug->GetID()) == Str)
{
return EffectManager::DoEffect(
return EffectUI::DoEffect(
plug->GetID(), context,
EffectManager::kConfigured);
}