Remove unused function

This commit is contained in:
Paul Licameli 2021-01-30 20:44:31 -05:00
parent 8cc9bd9b57
commit 78b6897f85
2 changed files with 0 additions and 6 deletions

View File

@ -24,7 +24,6 @@ messaging from a command back to its invoker.
#include "CommandContext.h"
#include <map>
#include <wx/app.h>
#include <wx/log.h>
#include <wx/string.h>
#include <wx/variant.h>
@ -87,9 +86,6 @@ void CommandContext::Progress( double d ) const
pOutput->Progress( d );
}
AudacityApp * CommandContext::GetApp() const
{ return (AudacityApp *) wxTheApp;}
void CommandContext::StartArray() const
{
if( pOutput )

View File

@ -15,7 +15,6 @@
#include "audacity/Types.h"
class AudacityProject;
class AudacityApp;
class wxEvent;
class CommandOutputTargets;
using CommandParameter = CommandID;
@ -55,6 +54,5 @@ public:
const wxEvent *pEvt;
int index;
CommandParameter parameter;
AudacityApp *GetApp() const;
};
#endif