mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-02 08:59:28 +02:00
Bug 2647 - Audacity can import Word 2000 files as "audio"
This commit is contained in:
parent
a3a158e56b
commit
d84ce6d147
@ -477,6 +477,14 @@ bool Importer::Import( AudacityProject &project,
|
|||||||
}
|
}
|
||||||
#endif
|
#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* >;
|
using ImportPluginPtrs = std::vector< ImportPlugin* >;
|
||||||
|
|
||||||
// This list is used to call plugins in correct order
|
// This list is used to call plugins in correct order
|
||||||
|
Loading…
x
Reference in New Issue
Block a user