summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_mouse.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-10-11 11:57:02 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-10-11 11:57:02 +0000
commitfcc6e5df27d36f4bba7d626096691caba8584733 (patch)
tree558dc50cf4d8348ac4890ef2f6379618e883ed74 /gtk2_ardour/editor_mouse.cc
parentba71d9c0d8909ce8bb0c71a78c814655fc5124db (diff)
remove debug output
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3918 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_mouse.cc')
-rw-r--r--gtk2_ardour/editor_mouse.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/gtk2_ardour/editor_mouse.cc b/gtk2_ardour/editor_mouse.cc
index 4a6c921393..b30b4307dd 100644
--- a/gtk2_ardour/editor_mouse.cc
+++ b/gtk2_ardour/editor_mouse.cc
@@ -119,10 +119,6 @@ Editor::event_frame (GdkEvent* event, double* pcx, double* pcy) const
*pcx = 0;
*pcy = 0;
- cerr << "event at " << event->button.x
- << ", " << event->button.y
- << endl;
-
switch (event->type) {
case GDK_BUTTON_RELEASE:
case GDK_BUTTON_PRESS:
@@ -152,11 +148,6 @@ Editor::event_frame (GdkEvent* event, double* pcx, double* pcy) const
break;
}
- cerr << "report as " << (pcx ? *pcx : -9999.0)
- << ", "
- << (pcy ? *pcy : -9999.0)
- << endl;
-
/* note that pixel_to_frame() never returns less than zero, so even if the pixel
position is negative (as can be the case with motion events in particular),
the frame location is always positive.