summaryrefslogtreecommitdiff
path: root/gtk2_ardour/plugin_selector.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-06-22 02:58:41 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-06-22 02:58:41 +0000
commit79bd2334db63e217fb8f152572e61d05248504d9 (patch)
tree892e6964ec8ed28f01bf78d8de58103ee6b3b2d3 /gtk2_ardour/plugin_selector.cc
parent5df781bb0d3b5e2d0a7d4abf94477283f9ebbaa6 (diff)
don't use PluginSelector::vst_refiller if VST_SUPPORT not defined
git-svn-id: svn://localhost/ardour2/trunk@633 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/plugin_selector.cc')
-rw-r--r--gtk2_ardour/plugin_selector.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk2_ardour/plugin_selector.cc b/gtk2_ardour/plugin_selector.cc
index d256282632..16796df160 100644
--- a/gtk2_ardour/plugin_selector.cc
+++ b/gtk2_ardour/plugin_selector.cc
@@ -150,7 +150,9 @@ PluginSelector::PluginSelector (PluginManager *mgr)
added_list.get_selection()->signal_changed().connect (mem_fun(*this, &PluginSelector::added_list_selection_changed));
input_refiller ();
+#ifdef VST_SUPPORT
vst_refiller ();
+#endif
}
void
@@ -308,7 +310,9 @@ PluginSelector::btn_update_clicked()
{
manager->refresh ();
input_refiller ();
+#ifdef VST_SUPPORT
vst_refiller ();
+#endif
}
#ifdef VST_SUPPORT