1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

Fix build of mod-nyq-bench

This commit is contained in:
Paul Licameli 2018-10-18 09:28:18 -04:00
parent 16ab48079b
commit 1eb293b7b3

View File

@ -193,12 +193,12 @@ extern "C"
c->SetCurrentMenu(pMenu);
c->AddSeparator();
c->SetDefaultFlags(AudioIONotBusyFlag, AudioIONotBusyFlag);
c->AddItem(wxT("NyqBench"),
_("&Nyquist Workbench..."),
true,
findme,
static_cast<CommandFunctorPointer>(&NyqBench::ShowNyqBench));
static_cast<CommandFunctorPointer>(&NyqBench::ShowNyqBench),
AudioIONotBusyFlag);
c->ClearCurrentMenu();
}