From 79bd2334db63e217fb8f152572e61d05248504d9 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 22 Jun 2006 02:58:41 +0000 Subject: [PATCH] don't use PluginSelector::vst_refiller if VST_SUPPORT not defined git-svn-id: svn://localhost/ardour2/trunk@633 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/plugin_selector.cc | 4 ++++ 1 file changed, 4 insertions(+) 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