remove lv2 GUI debugging, after confirming that LinuxDSP plugins close on plugin...
authorPaul Davis <paul@linuxaudiosystems.com>
Tue, 14 Jun 2011 00:20:31 +0000 (00:20 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Tue, 14 Jun 2011 00:20:31 +0000 (00:20 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@9727 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/lv2_plugin_ui.cc

index 467a3062b25c76e0b95e70a66bbf0fab9aa759ac..86242493513308a935942895cc0e63a820e60d72 100644 (file)
@@ -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;
        }