1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-03 17:39:25 +02:00

Fix Nyquist Workbench broken by r12717

This commit is contained in:
lllucius 2013-10-23 22:38:58 +00:00
parent c0c2d70a13
commit b3c2f486d2
2 changed files with 2 additions and 2 deletions

View File

@ -562,7 +562,7 @@ void NyqRedirector::AppendText()
// Connects Audacity menu item to an action in this dll.
// Only one action implemented so far.
//----------------------------------------------------------------------------
void ModNyqBenchCommandFunctor::operator()(int index)
void ModNyqBenchCommandFunctor::operator()(int index, const wxEvent *e)
{
if (gBench) {
gBench->Show();

View File

@ -218,7 +218,7 @@ class NyqBench:public wxFrame
class ModNyqBenchCommandFunctor:public CommandFunctor
{
public:
virtual void operator()(int index = 0);
virtual void operator()(int index = 0, const wxEvent *e = NULL);
};
#endif