summaryrefslogtreecommitdiff
path: root/libs/ardour/route_group.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-03-27 01:04:59 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-03-27 01:04:59 +0000
commit948caba5889a7425cbca11c2eb339f27f5a27194 (patch)
treed8e59f5d2487abb502a28256319147de707968d7 /libs/ardour/route_group.cc
parentee7c3042bdb870ea073b69a625b48e30bd6dab94 (diff)
total reimplementation of Configuration object internals to make adding new config vars an order of magnitude simpler. the actual path taken is a bit of a kludge, to put it mildly, but adding a new variable is now basically just one line in configuration_vars.h, and no work is required for serialization to/from ardour.rc.
git-svn-id: svn://localhost/trunk/ardour2@420 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/route_group.cc')
-rw-r--r--libs/ardour/route_group.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/route_group.cc b/libs/ardour/route_group.cc
index b9d4972277..ae807e66e1 100644
--- a/libs/ardour/route_group.cc
+++ b/libs/ardour/route_group.cc
@@ -190,12 +190,12 @@ RouteGroup::set_hidden (bool yn, void *src)
}
if (yn) {
_flags |= Hidden;
- if (Config->does_hiding_groups_deactivates_groups()) {
+ if (Config->get_hiding_groups_deactivates_groups()) {
_flags &= ~Active;
}
} else {
_flags &= ~Hidden;
- if (Config->does_hiding_groups_deactivates_groups()) {
+ if (Config->get_hiding_groups_deactivates_groups()) {
_flags |= Active;
}
}