mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-12 07:35:51 +01:00
Fix Nyquist Workbench broken by r12717
This commit is contained in:
@@ -562,7 +562,7 @@ void NyqRedirector::AppendText()
|
|||||||
// Connects Audacity menu item to an action in this dll.
|
// Connects Audacity menu item to an action in this dll.
|
||||||
// Only one action implemented so far.
|
// Only one action implemented so far.
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
void ModNyqBenchCommandFunctor::operator()(int index)
|
void ModNyqBenchCommandFunctor::operator()(int index, const wxEvent *e)
|
||||||
{
|
{
|
||||||
if (gBench) {
|
if (gBench) {
|
||||||
gBench->Show();
|
gBench->Show();
|
||||||
|
|||||||
@@ -218,7 +218,7 @@ class NyqBench:public wxFrame
|
|||||||
class ModNyqBenchCommandFunctor:public CommandFunctor
|
class ModNyqBenchCommandFunctor:public CommandFunctor
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual void operator()(int index = 0);
|
virtual void operator()(int index = 0, const wxEvent *e = NULL);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user