summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-01-09 15:10:26 +0000
committerCarl Hetherington <carl@carlh.net>2011-01-09 15:10:26 +0000
commitddb1a76e5b1b0645d28a83f4735f2070b204fc38 (patch)
tree3ef75c743d83588e3acd293dde3c946f1d837c13 /gtk2_ardour
parente137f663032a3798a861ec0612874ffdb824e3fa (diff)
Replace RouteGroup's collection of apply() methods with a single one.
git-svn-id: svn://localhost/ardour2/branches/3.0@8485 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/gain_meter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/gain_meter.cc b/gtk2_ardour/gain_meter.cc
index 849426c4c0..571f140bac 100644
--- a/gtk2_ardour/gain_meter.cc
+++ b/gtk2_ardour/gain_meter.cc
@@ -577,7 +577,7 @@ GainMeterBase::set_mix_group_meter_point (Route& route, MeterPoint mp)
RouteGroup* mix_group;
if((mix_group = route.route_group()) != 0){
- mix_group->apply (&Route::set_meter_point, mp);
+ mix_group->foreach_route (boost::bind (&Route::set_meter_point, _1, mp));
} else {
route.set_meter_point (mp);
}