1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-07 12:12:23 +01:00

Missing alias file tracking out of AudacityApp, into new files...

... which reduces the need for including AudacityApp.h
This commit is contained in:
Paul Licameli
2019-04-25 16:34:07 -04:00
parent 0ab29d21e9
commit a047fa6e7a
19 changed files with 249 additions and 175 deletions

View File

@@ -53,7 +53,7 @@ out.
#include "sndfile.h"
#include "FileException.h"
#include "FileFormats.h"
#include "AudacityApp.h"
#include "MissingAliasFileDialog.h"
// msmeyer: Define this to add debug output via wxPrintf()
//#define DEBUG_BLOCKFILE
@@ -537,8 +537,8 @@ size_t BlockFile::CommonReadData(
if (pAliasFile) {
// Set a marker to display an error message for the silence
if (!wxGetApp().ShouldShowMissingAliasFilesWarning())
wxGetApp().MarkMissingAliasFilesWarning(pAliasFile);
if (!MissingAliasFilesDialog::ShouldShow())
MissingAliasFilesDialog::Mark(pAliasFile);
}
}
}