summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-12-13 21:11:30 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-12-13 21:11:30 +0000
commit47d076418d577513c7fb2f0a912c703b8b59407f (patch)
treeb48e239b92cf199e9fd237b4e554cec1bda5c454 /gtk2_ardour
parentb2307a30fb07fb83805451c2f34fad97fdb40909 (diff)
remove debugging output file
git-svn-id: svn://localhost/ardour2/trunk@1203 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/automation_line.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc
index 222a112cbf..1dc62f1f42 100644
--- a/gtk2_ardour/automation_line.cc
+++ b/gtk2_ardour/automation_line.cc
@@ -601,15 +601,11 @@ AutomationLine::determine_visible_control_points (ALPoints& points)
view_index = 0;
- ofstream oout ("orig_coordinates");
-
for (model = alist.begin(), pi = 0; pi < npoints; ++model, ++pi) {
double tx = points[pi].x;
double ty = points[pi].y;
- oout << tx << ' ' << ty << endl;
-
/* now ensure that the control_points vector reflects the current curve
state, but don't plot control points too close together. also, don't
plot a series of points all with the same value.
@@ -710,8 +706,6 @@ AutomationLine::determine_visible_control_points (ALPoints& points)
view_index++;
}
- oout.close ();
-
/* discard extra CP's to avoid confusing ourselves */
while (control_points.size() > view_index) {