1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 16:43:33 +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

@@ -31,6 +31,7 @@
#include "Project.h"
#include "ShuttleGui.h"
#include "effects/EffectManager.h"
#include "effects/EffectUI.h"
#include "effects/nyquist/Nyquist.h"
#include "../images/AudacityLogo.xpm"
#include "../../src/commands/CommandContext.h"
@@ -1403,7 +1404,7 @@ void NyqBench::OnGo(wxCommandEvent & e)
mRunning = true;
UpdateWindowUI();
EffectManager::DoEffect(ID, CommandContext(*p), 0);
EffectUI::DoEffect(ID, CommandContext(*p), 0);
mRunning = false;
UpdateWindowUI();