display results of a bounce in the region list
[ardour.git] / libs / ardour / plugin_manager.cc
index 096696aca56dc67b8bf97522eef03b648a85a041..5b3a4658a80fd55e2658038ad0acda9c3b06ab78 100644 (file)
@@ -254,7 +254,7 @@ PluginManager::ladspa_discover (string path)
                info->index = i;
                info->n_inputs = 0;
                info->n_outputs = 0;
-               info->type = PluginInfo::LADSPA;
+               info->type = ARDOUR::LADSPA;
                info->unique_id = descriptor->UniqueID;
                
                for (uint32_t n=0; n < descriptor->PortCount; ++n) {
@@ -382,7 +382,7 @@ PluginManager::vst_discover (string path)
                        << endl;
        }
        
-       PluginInfoPtr info(new PluginInfo);
+       PluginInfoPtr info(new VSTPluginInfo);
 
        /* what a goddam joke freeware VST is */
 
@@ -397,7 +397,7 @@ PluginManager::vst_discover (string path)
        info->index = 0;
        info->n_inputs = finfo->numInputs;
        info->n_outputs = finfo->numOutputs;
-       info->type = PluginInfo::VST;
+       info->type = ARDOUR::VST;
        
        _vst_plugin_info.push_back (info);
        fst_free_info (finfo);