summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_routes.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-05-10 10:22:38 +0000
committerCarl Hetherington <carl@carlh.net>2010-05-10 10:22:38 +0000
commit05b99bf8da5f5b2103bdd27049f691f1638e9dc9 (patch)
tree5cf71c9de34e3c829b7af1e654263077cd7dcc75 /gtk2_ardour/editor_routes.cc
parentc899ba4368e61f31820a34c5e7c9a48345a364a2 (diff)
Remove some debug code.
git-svn-id: svn://localhost/ardour2/branches/3.0@7091 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_routes.cc')
-rw-r--r--gtk2_ardour/editor_routes.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/gtk2_ardour/editor_routes.cc b/gtk2_ardour/editor_routes.cc
index 80353c6d3f..81a1635e77 100644
--- a/gtk2_ardour/editor_routes.cc
+++ b/gtk2_ardour/editor_routes.cc
@@ -398,15 +398,12 @@ EditorRoutes::route_deleted (Gtk::TreeModel::Path const &)
void
EditorRoutes::visible_changed (Glib::ustring const & path)
{
- cout << "vis cha earl\n";
if (_session && _session->deletion_in_progress()) {
return;
}
TreeIter iter;
- cout << "ER vis cha\n";
-
if ((iter = _model->get_iter (path))) {
TimeAxisView* tv = (*iter)[_columns.tv];
if (tv) {
@@ -570,11 +567,8 @@ EditorRoutes::hide_track_in_display (TimeAxisView& tv)
TreeModel::Children rows = _model->children();
TreeModel::Children::iterator i;
- cout << "hide.\n";
-
for (i = rows.begin(); i != rows.end(); ++i) {
if ((*i)[_columns.tv] == &tv) {
- cout << "weee\n";
(*i)[_columns.visible] = false;
break;
}