From: Paul Davis Date: Tue, 17 Mar 2009 12:25:24 +0000 (+0000) Subject: clean up VST preset debug output X-Git-Tag: 2.8.16~893 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=40f3cac2d56d0a7a8d31d9a24dc55fc766278a42;p=ardour.git clean up VST preset debug output git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4860 d708f5d6-7413-0410-9779-e7cbd77b26cf --- diff --git a/gtk2_ardour/vst_pluginui.cc b/gtk2_ardour/vst_pluginui.cc index 72dbdb628c..2b6961c6a8 100644 --- a/gtk2_ardour/vst_pluginui.cc +++ b/gtk2_ardour/vst_pluginui.cc @@ -62,7 +62,6 @@ void VSTPluginUI::preset_chosen () { int program = vst_preset_combo.get_active_row_number (); - cerr << "switch to program " << program << endl; // cant be done here. plugin only expects one GUI thread. //jvst->fst->plugin->dispatcher( jvst->fst->plugin, effSetProgram, 0, program, NULL, 0.0 ); vst->fst()->want_program = program; @@ -146,8 +145,6 @@ VSTPluginUI::create_preset_store () preset_model = ListStore::create (preset_columns); - cerr << "There are " << fst->plugin->numPrograms << " programs\n"; - for (int i = 0; i < fst->plugin->numPrograms; ++i) { char buf[100]; TreeModel::Row row = *(preset_model->append()); @@ -160,8 +157,6 @@ VSTPluginUI::create_preset_store () row[preset_columns.name] = buf; row[preset_columns.number] = i; - - cerr << "Preset " << i << " => " << buf << endl; } if (fst->plugin->numPrograms > 0) {