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

Pass ChoiceSetting to StartRadioButtonGroup...

... and we don't need to pass strings to TieRadioButton.

This removes some repetition of string literals in import/export, which is
good too.
This commit is contained in:
Paul Licameli
2019-04-02 18:15:06 -04:00
parent c5e21ead18
commit e008a44022
9 changed files with 108 additions and 52 deletions

View File

@@ -17,6 +17,7 @@
#include "sndfile.h"
class ChoiceSetting;
class wxString;
//
@@ -130,4 +131,7 @@ struct SFFile : public std::unique_ptr<SNDFILE, ::SFFileCloser>
}
};
extern ChoiceSetting FileFormatsCopyOrEditSetting;
extern ChoiceSetting FileFormatsSaveWithDependenciesSetting;
#endif