1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-14 17:14:07 +01:00

Remove unnecessary #include-s from .cpp files...

... Unnecessary because transitively included.

But each .cpp file still includes its own .h file near the top to ensure
that it compiles indenendently, even if it is reincluded transitively later.
This commit is contained in:
Paul Licameli
2019-05-16 17:17:55 -04:00
parent 548192fcf3
commit 6c57948d8f
211 changed files with 1 additions and 406 deletions

View File

@@ -21,8 +21,6 @@
#include <string.h>
#include "../Internat.h"
XMLFileReader::XMLFileReader()
{
mParser = XML_ParserCreate(NULL);

View File

@@ -24,9 +24,6 @@
#include "../Audacity.h" // for USE_* macros
#include "XMLTagHandler.h"
#include "../MemoryX.h"
#include "../Internat.h"
#ifdef _WIN32
#include <windows.h>
#include <wx/msw/winundef.h>
@@ -36,7 +33,6 @@
#include <wx/arrstr.h>
#include <wx/filename.h>
#include "../SampleFormat.h"
#include "../Track.h"
// Length check. Is in part about not supplying malicious strings to file functions.

View File

@@ -33,8 +33,6 @@ the general functionality for creating XML in UTF8 encoding.
#include <string.h>
#include "../Internat.h"
//table for xml encoding compatibility with expat decoding
//see wxWidgets-2.8.12/src/expat/lib/xmltok_impl.h
//and wxWidgets-2.8.12/src/expat/lib/asciitab.h