mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-15 07:01:18 +02:00
Use type aliases FileExtension, FileExtensions...
... for wxString and wxArrayStringEx, holding file extensions (without dot); to be replaced later with different types (not yet using std::vector, becase of some uses of wxArrayString::Index with two arguments) And simplify some constructions of arrays
This commit is contained in:
@@ -73,9 +73,8 @@ class PCMImportPlugin final : public ImportPlugin
|
||||
{
|
||||
public:
|
||||
PCMImportPlugin()
|
||||
: ImportPlugin(wxArrayString())
|
||||
: ImportPlugin(sf_get_all_extensions())
|
||||
{
|
||||
mExtensions = sf_get_all_extensions();
|
||||
}
|
||||
|
||||
~PCMImportPlugin() { }
|
||||
|
Reference in New Issue
Block a user