summaryrefslogtreecommitdiff
path: root/gtk2_ardour/automation_line.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-03-05 11:47:58 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-03-05 11:47:58 -0500
commitf5233f11a29a7bee2ba8c9b0ccaabbb4cb0166ae (patch)
tree5463392cf161ec5fa60e4984dc94da4045a27f2b /gtk2_ardour/automation_line.cc
parent58a30da03d31f5a30faddd76efe4e76b242f6687 (diff)
remove debugging output
Diffstat (limited to 'gtk2_ardour/automation_line.cc')
-rw-r--r--gtk2_ardour/automation_line.cc4
1 files changed, 0 insertions, 4 deletions
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<ControlPoint*>::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<ControlPoint*>::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<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
(*i)->hide ();
}