1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Include nothing before Audacity.h, as comments say we should...

... and remove some duplicated inclusions
This commit is contained in:
Paul Licameli
2018-11-10 21:40:37 -05:00
parent 61291257eb
commit 173a300427
156 changed files with 174 additions and 30 deletions

View File

@@ -18,6 +18,7 @@ updating the ODDecodeBlockFile and the GUI of the newly available data.
#include "../Audacity.h"
#include "ODDecodeTask.h"
#include "../blockfile/ODDecodeBlockFile.h"
#include "../Sequence.h"
#include "../WaveTrack.h"

View File

@@ -16,6 +16,7 @@ ODTask requests and internals.
#include "../Audacity.h"
#include "ODManager.h"
#include "ODTask.h"
#include "ODTaskThread.h"
#include "ODWaveTrackTaskQueue.h"

View File

@@ -21,9 +21,11 @@
#ifndef __AUDACITY_ODTASKTHREAD__
#define __AUDACITY_ODTASKTHREAD__
#include <wx/thread.h>
#include "../Audacity.h" // contains the set-up of AUDACITY_DLL_API
#include <wx/thread.h>
#include "../MemoryX.h"
class ODTask;

View File

@@ -18,6 +18,7 @@ tasks associated with a WaveTrack.
#include "../Audacity.h"
#include "ODWaveTrackTaskQueue.h"
#include "ODTask.h"
#include "ODManager.h"
#include "../WaveTrack.h"