remove lv2 GUI debugging, after confirming that LinuxDSP plugins close on plugin deletion or session exit
git-svn-id: svn://localhost/ardour2/branches/3.0@9727 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
@@ -264,26 +264,19 @@ LV2PluginUI::lv2ui_instantiate(const std::string& title)
|
||||
void
|
||||
LV2PluginUI::lv2ui_free()
|
||||
{
|
||||
stop_updating(NULL);
|
||||
stop_updating (0);
|
||||
|
||||
if (_gui_widget) {
|
||||
remove (*_gui_widget);
|
||||
}
|
||||
|
||||
#ifdef HAVE_SUIL
|
||||
std::cerr << "Calling suil_instance_free() to clean up "
|
||||
<< (_lv2->is_external_ui() ? " external " : " internal ")
|
||||
<< "UI\n";
|
||||
suil_instance_free((SuilInstance*)_inst);
|
||||
#else
|
||||
SLV2UIInstance inst = (SLV2UIInstance)_inst;
|
||||
const LV2UI_Descriptor* ui_desc = slv2_ui_instance_get_descriptor(inst);
|
||||
LV2UI_Handle ui_handle = slv2_ui_instance_get_handle(inst);
|
||||
|
||||
std::cerr << "Calling ui descriptor cleanup on " << ui_desc << " to clean up "
|
||||
<< (_lv2->is_external_ui() ? " external " : " internal ")
|
||||
<< "UI\n";
|
||||
|
||||
if (ui_desc) {
|
||||
ui_desc->cleanup(ui_handle);
|
||||
}
|
||||
@@ -295,8 +288,6 @@ LV2PluginUI::lv2ui_free()
|
||||
|
||||
LV2PluginUI::~LV2PluginUI ()
|
||||
{
|
||||
std::cerr << "LV2PluginUI destructor called" << std::endl;
|
||||
|
||||
if (_values) {
|
||||
delete[] _values;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user