summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_routes.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-10-23 03:32:14 +0200
committerRobin Gareus <robin@gareus.org>2014-10-23 03:43:04 +0200
commitc6a3d6bc48ea766a55d0b848d7bff16daa013b41 (patch)
treeb1255e14d3b42220582935f06e7c9846c4f6d535 /gtk2_ardour/editor_routes.cc
parente2c6eb0ba1948fa5b39216618f8e8d9fdbad30b0 (diff)
small round of compiler warning fixes
Diffstat (limited to 'gtk2_ardour/editor_routes.cc')
-rw-r--r--gtk2_ardour/editor_routes.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_routes.cc b/gtk2_ardour/editor_routes.cc
index e066e721fe..10b1cc894d 100644
--- a/gtk2_ardour/editor_routes.cc
+++ b/gtk2_ardour/editor_routes.cc
@@ -810,7 +810,7 @@ EditorRoutes::update_visibility ()
TreeModel::Children rows = _model->children();
TreeModel::Children::iterator i;
- DisplaySuspender ds ();
+ DisplaySuspender ds;
for (i = rows.begin(); i != rows.end(); ++i) {
TimeAxisView *tv = (*i)[_columns.tv];