From f5233f11a29a7bee2ba8c9b0ccaabbb4cb0166ae Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 5 Mar 2014 11:47:58 -0500 Subject: remove debugging output --- gtk2_ardour/automation_line.cc | 4 ---- 1 file changed, 4 deletions(-) (limited to 'gtk2_ardour/automation_line.cc') diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc index dbab83d6b9..3d8c2ca3ca 100644 --- a/gtk2_ardour/automation_line.cc +++ b/gtk2_ardour/automation_line.cc @@ -141,7 +141,6 @@ void AutomationLine::show () { if (_visible & Line) { - cerr << "AL visibile with vis = " << (hex) << _visible << dec << endl; /* Only show the line there are some points, otherwise we may show an out-of-date line when automation points have been removed (the line will still follow the shape of the old points). @@ -153,12 +152,10 @@ AutomationLine::show () } if (_visible & ControlPoints) { - cerr << "AL visibile (just cp's with vis = " << (hex) << _visible << dec << endl; for (vector::iterator i = control_points.begin(); i != control_points.end(); ++i) { (*i)->show (); } } else if (_visible & SelectedControlPoints) { - cerr << "AL visibile (just selected cp's with vis = " << (hex) << _visible << dec << endl; for (vector::iterator i = control_points.begin(); i != control_points.end(); ++i) { if ((*i)->get_selected()) { (*i)->show (); @@ -167,7 +164,6 @@ AutomationLine::show () } } } else { - cerr << "AL visibile (no cp's with vis = " << (hex) << _visible << dec << endl; for (vector::iterator i = control_points.begin(); i != control_points.end(); ++i) { (*i)->hide (); } -- cgit v1.2.3