1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

Bug 2647 - Audacity can import Word 2000 files as "audio"

This commit is contained in:
Leland Lucius 2021-01-28 14:41:32 -06:00
parent a3a158e56b
commit d84ce6d147

View File

@ -477,6 +477,14 @@ bool Importer::Import( AudacityProject &project,
}
#endif
// Bug #2647: Peter has a Word 2000 .doc file that is recognized and imported by FFmpeg.
if (wxFileName(fName).GetExt() == wxT("doc")) {
errorMessage =
XO("\"%s\" \nis a not an audio file. \nAudacity cannot open this type of file.")
.Format( fName );
return false;
}
using ImportPluginPtrs = std::vector< ImportPlugin* >;
// This list is used to call plugins in correct order