summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-01-01 18:57:29 +0000
committerCarl Hetherington <carl@carlh.net>2009-01-01 18:57:29 +0000
commit838ed37aff3e0966e906a8c57f5cabbc55febfc7 (patch)
tree3513e77d6436ffd4ca3278f3ce90a5509e6b89b1 /gtk2_ardour
parent9ef2eafda958ea351ec23d373689e98784775208 (diff)
Comment out some debugging code.
git-svn-id: svn://localhost/ardour2/branches/3.0@4369 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/editor_region_list.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/editor_region_list.cc b/gtk2_ardour/editor_region_list.cc
index f2c98dfa30..c95c3e09eb 100644
--- a/gtk2_ardour/editor_region_list.cc
+++ b/gtk2_ardour/editor_region_list.cc
@@ -358,12 +358,12 @@ Editor::update_region_row (boost::shared_ptr<Region> region)
for (i = rows.begin(); i != rows.end(); ++i) {
- cerr << "Level 1: Compare " << region->name() << " with parent " << (*i)[region_list_columns.name] << "\n";
+// cerr << "Level 1: Compare " << region->name() << " with parent " << (*i)[region_list_columns.name] << "\n";
boost::shared_ptr<Region> compared_region = (*i)[region_list_columns.region];
if (region == compared_region) {
- cerr << "Matched\n";
+// cerr << "Matched\n";
populate_row(region, (*i));
return;
}
@@ -374,7 +374,7 @@ Editor::update_region_row (boost::shared_ptr<Region> region)
}
}
}
- cerr << "Returning - No match\n";
+// cerr << "Returning - No match\n";
}
bool
@@ -385,13 +385,13 @@ Editor::update_region_subrows (boost::shared_ptr<Region> region, TreeModel::Row
for (i = subrows.begin(); i != subrows.end(); ++i) {
- cerr << "Level " << level << ": Compare " << region->name() << " with child " << (*i)[region_list_columns.name] << "\n";
+// cerr << "Level " << level << ": Compare " << region->name() << " with child " << (*i)[region_list_columns.name] << "\n";
boost::shared_ptr<Region> compared_region = (*i)[region_list_columns.region];
if (region == compared_region) {
populate_row(region, (*i));
- cerr << "Matched\n";
+// cerr << "Matched\n";
return true;
}