1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-10 06:36:24 +01:00

Unitary fixes (#598)

* Eliminate unneeded back-pointer to project from non-wave Tracks...

... now that DirManager is gone

* Remove unused declarations

* SampleData::mProject was not used

* Correct ProjectFileIO::GetLibraryError

* Remove unnecessary #include directives
This commit is contained in:
Paul Licameli
2020-07-02 12:42:25 -04:00
committed by GitHub
parent e7fd679ae6
commit 1fcb77ebce
18 changed files with 37 additions and 67 deletions

View File

@@ -103,7 +103,6 @@ private:
void CalcSummary();
private:
AudacityProject *mProject;
ProjectFileIO & mIO;
bool mValid;
bool mDirty;
@@ -128,7 +127,6 @@ private:
const char *columns =
"sampleformat, summin, summax, sumrms, summary256, summary64k, samples";
friend class ProjectFileIO;
#if defined(WORDS_BIGENDIAN)
#error All sample block data is little endian...big endian not yet supported
#endif