From 05b99bf8da5f5b2103bdd27049f691f1638e9dc9 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 10 May 2010 10:22:38 +0000 Subject: [PATCH] Remove some debug code. git-svn-id: svn://localhost/ardour2/branches/3.0@7091 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor_routes.cc | 6 ------ 1 file changed, 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; }