1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 09:01:15 +02:00

Remove an unnecessary nested #include

This commit is contained in:
Paul Licameli
2019-03-31 13:05:13 -04:00
parent 4c441697eb
commit 48b184f072
6 changed files with 7 additions and 1 deletions

View File

@@ -21,7 +21,6 @@
#include "CommandMisc.h"
#include "CommandSignature.h"
#include "CommandTargets.h"
#include "../commands/AudacityCommand.h"
class AudacityApp;

View File

@@ -66,6 +66,8 @@ CommandContext::CommandContext(
{
}
CommandContext::~CommandContext() = default;
void CommandContext::Status( const wxString & message, bool bFlush ) const
{
if( pOutput )

View File

@@ -34,6 +34,8 @@ public:
AudacityProject &p,
std::unique_ptr<CommandOutputTargets> target);
~CommandContext();
virtual void Status( const wxString &message, bool bFlush = false ) const;
virtual void Error( const wxString &message ) const;
virtual void Progress( double d ) const;