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

Reviewed uses of type alias FileExtension, it belongs in more places

This commit is contained in:
Paul Licameli
2019-12-27 16:14:25 -05:00
parent 3f88df06ec
commit d6d4ee3c29
11 changed files with 23 additions and 24 deletions

View File

@@ -73,7 +73,7 @@ public:
// import. If a filename matches any of these extensions,
// this importer will get first dibs on importing it.
virtual FileExtensions GetSupportedExtensions() = 0;
virtual bool SupportsExtension(const wxString & extension) = 0;
virtual bool SupportsExtension(const FileExtension & extension) = 0;
// Create the client that will be used to import a file.
virtual ImporterClientInterface *CreateClient() = 0;