From a1844529e0d69ff8a222e0e67e34028ed1e93201 Mon Sep 17 00:00:00 2001 From: GZharun Date: Thu, 21 Aug 2014 12:40:03 +0300 Subject: [PATCH] [Summary] Fix of mingw compiletion error --- gtk2_ardour/editor_routes.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/editor_routes.cc b/gtk2_ardour/editor_routes.cc index cb23bf67a1..bfe442f89e 100644 --- a/gtk2_ardour/editor_routes.cc +++ b/gtk2_ardour/editor_routes.cc @@ -1619,8 +1619,8 @@ EditorRoutes::move_tracks_relatively (const PBD::ID& source_track_id, const PBD: } } - RouteList::const_iterator insert_position; - for (RouteList::const_iterator iter = routes.begin(); iter != routes.end(); ++iter) { + RouteList::iterator insert_position; + for (RouteList::iterator iter = routes.begin(); iter != routes.end(); ++iter) { if ((*iter)->id() == target_track_id ) { insert_position = iter; break;