13
0

remove debug output

This commit is contained in:
Paul Davis 2018-12-27 17:17:58 -05:00
parent 7448024dae
commit 923d07be31
4 changed files with 0 additions and 9 deletions

View File

@ -608,7 +608,6 @@ MonitorSection::set_session (Session* s)
_route->processors_changed.connect (route_connections, invalidator (*this), boost::bind (&MonitorSection::processors_changed, this, _1), gui_context());
_route->output()->PortCountChanged.connect (route_connections, invalidator (*this), boost::bind (&MonitorSection::populate_buttons, this), gui_context());
_route->DropReferences.connect (route_connections, invalidator (*this), boost::bind (&MonitorSection::drop_route, this), gui_context());
cerr << this << " connected to DR for " << _route << endl;
if (_ui_initialized) {
update_processor_box ();
@ -1203,8 +1202,6 @@ MonitorSection::unassign_controllables ()
{
boost::shared_ptr<Controllable> none;
cerr << this << " unassign MS controls";
solo_cut_control->set_controllable (none);
solo_cut_display->set_controllable (none);
gain_control->set_controllable (none);
@ -1228,7 +1225,6 @@ MonitorSection::assign_controllables ()
solo_cut_control->set_controllable (_session->solo_cut_control());
solo_cut_display->set_controllable (_session->solo_cut_control());
cerr << "MS gainc ontrol is " << _route->gain_control() << endl;
gain_control->set_controllable (_route->gain_control());
gain_display->set_controllable (_route->gain_control());
cut_all_button.set_controllable (_monitor->cut_control());

View File

@ -992,7 +992,6 @@ RouteUI::toggle_rec_safe ()
void
RouteUI::step_edit_changed (bool yn)
{
cerr << _route->name() << " step editing changed to " << yn << endl;
if (yn) {
if (rec_enable_button) {
rec_enable_button->set_active_state (Gtkmm2ext::ExplicitActive);

View File

@ -157,8 +157,6 @@ StepEditor::step_entry_hidden (GdkEventAny*)
void
StepEditor::step_entry_done ()
{
cerr << this << " SE done\n";
hide_connection.disconnect ();
delete_connection.disconnect ();

View File

@ -660,8 +660,6 @@ MidiTrack::set_step_editing (bool yn)
}
if (yn != _step_editing) {
std::cerr << "\n\n\n" << name() << " changed step editing to " << yn << std::endl;
PBD::stacktrace (std::cerr, 100);
_step_editing = yn;
StepEditStatusChange (yn);
}