mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-07 15:22:34 +02:00
Fix "Scriptables" commands, which broke at 02b6153...
... Problem was the loss of an override of PluginManager::GetID() for a more specific pointer type.
This commit is contained in:
parent
3ac95672c0
commit
4facbd939d
@ -1550,6 +1550,11 @@ ComponentInterface *PluginManager::GetInstance(const PluginID & ID)
|
||||
}
|
||||
}
|
||||
|
||||
PluginID PluginManager::GetID(ModuleInterface *module)
|
||||
{
|
||||
return ModuleManager::GetID(module);
|
||||
}
|
||||
|
||||
PluginID PluginManager::GetID(ComponentInterface *command)
|
||||
{
|
||||
return wxString::Format(wxT("%s_%s_%s_%s_%s"),
|
||||
|
@ -236,6 +236,7 @@ public:
|
||||
|
||||
static PluginManager & Get();
|
||||
|
||||
static PluginID GetID(ModuleInterface *module);
|
||||
static PluginID GetID(ComponentInterface *command);
|
||||
static PluginID GetID(EffectDefinitionInterface *effect);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user