summaryrefslogtreecommitdiff
path: root/libs/ardour/lxvst_plugin.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-11-07 23:37:10 +0100
committerRobin Gareus <robin@gareus.org>2018-11-07 23:37:10 +0100
commit41abf75077921766f25aae45c87aca927244e520 (patch)
treeaa16ca6d967b706e5c03479d25bc70910cc9b138 /libs/ardour/lxvst_plugin.cc
parentbc83e6f75334e3493d70635ff1060a1798430456 (diff)
Consolidate VST Plugin Info
This unifies common PluginManager VST code to construct *VSTPluginInfo and also provides a dedicated is_instrument() method for VST plugins.
Diffstat (limited to 'libs/ardour/lxvst_plugin.cc')
-rw-r--r--libs/ardour/lxvst_plugin.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/lxvst_plugin.cc b/libs/ardour/lxvst_plugin.cc
index 8bfd5d61d3..d9aa971387 100644
--- a/libs/ardour/lxvst_plugin.cc
+++ b/libs/ardour/lxvst_plugin.cc
@@ -168,8 +168,8 @@ LXVSTPluginInfo::get_presets (bool user_only) const
return p;
}
-LXVSTPluginInfo::LXVSTPluginInfo()
+LXVSTPluginInfo::LXVSTPluginInfo (_VSTInfo* nfo) : VSTPluginInfo (nfo)
{
- type = ARDOUR::LXVST;
+ type = ARDOUR::LXVST;
}