mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-19 09:01:15 +02:00
Use type aliases FilePath, FilePaths...
... for wxString and wxArrayStringEx, holding file paths (absolute or relative, directory or plain file); to be replaced later with different types (not yet using std::vector, becase of some uses of wxArrayString::Index with two arguments)
This commit is contained in:
@@ -112,6 +112,11 @@ void VampEffectsModule::Terminate()
|
||||
return;
|
||||
}
|
||||
|
||||
FileExtensions VampEffectsModule::GetFileExtensions()
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
bool VampEffectsModule::AutoRegisterPlugins(PluginManagerInterface & WXUNUSED(pm))
|
||||
{
|
||||
return false;
|
||||
|
@@ -41,8 +41,8 @@ public:
|
||||
bool Initialize() override;
|
||||
void Terminate() override;
|
||||
|
||||
FileExtensions GetFileExtensions() override { return {}; }
|
||||
wxString InstallPath() override { return {}; }
|
||||
FileExtensions GetFileExtensions() override;
|
||||
FilePath InstallPath() override { return {}; }
|
||||
|
||||
bool AutoRegisterPlugins(PluginManagerInterface & pm) override;
|
||||
PluginPaths FindPluginPaths(PluginManagerInterface & pm) override;
|
||||
|
Reference in New Issue
Block a user