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:
parent
66661daa05
commit
1c2ebfae94
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user