1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-08 14:13:57 +01:00

Fix Mac build after commit e4260e9581

This commit is contained in:
Paul Licameli
2017-02-06 20:31:51 -05:00
parent ec12bc37b5
commit e84a5b66ba
2 changed files with 3 additions and 2 deletions

View File

@@ -190,7 +190,8 @@ bool AudioUnitEffectsModule::RegisterPlugin(PluginManagerInterface & pm, const w
return true; return true;
} }
bool AudioUnitEffectsModule::IsPluginValid(const wxString & path) bool AudioUnitEffectsModule::IsPluginValid(
const wxString & path, bool /* bFast */)
{ {
wxString name; wxString name;
return FindAudioUnit(path, name) != NULL; return FindAudioUnit(path, name) != NULL;

View File

@@ -246,7 +246,7 @@ public:
wxArrayString FindPlugins(PluginManagerInterface & pm) override; wxArrayString FindPlugins(PluginManagerInterface & pm) override;
bool RegisterPlugin(PluginManagerInterface & pm, const wxString & path) override; bool RegisterPlugin(PluginManagerInterface & pm, const wxString & path) override;
bool IsPluginValid(const wxString & path) override; bool IsPluginValid(const wxString & path, bool bFast) override;
IdentInterface *CreateInstance(const wxString & path) override; IdentInterface *CreateInstance(const wxString & path) override;
void DeleteInstance(IdentInterface *instance) override; void DeleteInstance(IdentInterface *instance) override;