summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_mouse.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-02-01 22:39:15 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-02-01 22:39:15 +0000
commit34a8a611a51d9c77405781220af25c186666d691 (patch)
treee6d232cd67f5af12237a65f9a1f48b882a482d83 /gtk2_ardour/editor_mouse.cc
parentfe3070dab539d7505e938e9becf73a5bc76f6969 (diff)
remove verbose debugging messages
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@8670 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_mouse.cc')
-rw-r--r--gtk2_ardour/editor_mouse.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/gtk2_ardour/editor_mouse.cc b/gtk2_ardour/editor_mouse.cc
index 15f8b235e2..e1e4faa44e 100644
--- a/gtk2_ardour/editor_mouse.cc
+++ b/gtk2_ardour/editor_mouse.cc
@@ -3996,8 +3996,6 @@ Editor::region_drag_finished_callback (ArdourCanvas::Item* item, GdkEvent* event
drag_info.x_constrained = !drag_info.x_constrained;
}
- cerr << "drag done, copy ? " << drag_info.copy << " x-const ? " << drag_info.x_constrained << endl;
-
if (drag_info.copy) {
if (drag_info.x_constrained) {
op_string = _("fixed time region copy");
@@ -4037,8 +4035,6 @@ Editor::region_drag_finished_callback (ArdourCanvas::Item* item, GdkEvent* event
continue;
}
- cerr << "drag delta = " << drag_delta << " rpos was " << rv->region()->position() << endl;
-
if (changed_position && !drag_info.x_constrained && (mouse_mode != MouseRange)) {
where = rv->region()->position() - drag_delta;
} else {
@@ -4074,8 +4070,6 @@ Editor::region_drag_finished_callback (ArdourCanvas::Item* item, GdkEvent* event
session->add_command (new MementoCommand<Playlist>(*to_playlist, &to_playlist->get_state(), 0));
}
- cerr << "Adding region @ " << new_region->position() << " at " << where << endl;
-
to_playlist->add_region (new_region, where);
c.disconnect ();
@@ -4409,8 +4403,6 @@ Editor::start_selection_grab (ArdourCanvas::Item* item, GdkEvent* event)
return;
}
- cerr << "got " << new_regions.size() << " regions in selection grab\n";
-
/* XXX fix me one day to use all new regions */
boost::shared_ptr<Region> region (new_regions.front());