1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-20 14:20:06 +02:00

A bit more help for Export Multiple

This commit is contained in:
Leland Lucius 2020-04-02 08:53:26 -05:00
parent 66661daa05
commit 1c2ebfae94

View File

@ -305,6 +305,8 @@ public:
// Optional // Optional
bool CheckFileName(wxFileName &filename, int format = 0) override; bool CheckFileName(wxFileName &filename, int format = 0) override;
FileExtension GetExtension(int index) override;
private: private:
void GetSettings(); void GetSettings();
@ -803,6 +805,13 @@ bool ExportCL::CheckFileName(wxFileName &filename, int WXUNUSED(format))
return true; return true;
} }
FileExtension ExportCL::GetExtension(int index)
{
GetSettings();
return mExt;
}
void ExportCL::GetSettings() void ExportCL::GetSettings()
{ {
// Retrieve settings // Retrieve settings