summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-01-19 13:38:29 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2016-01-19 13:38:29 -0500
commita9ec547457bfa65655ee946063426f1ba85b6f91 (patch)
tree79989f48ffc95f71df905a38691e34007a5f4594 /libs/ardour/ardour/session.h
parent22c5cb47f794bf91ea994b5dca8ce26c05e0cdd8 (diff)
mackie: still respond to route groups visibility changes
Diffstat (limited to 'libs/ardour/ardour/session.h')
-rw-r--r--libs/ardour/ardour/session.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index afc93a9f76..adadaa26f4 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -349,7 +349,7 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
/** Emitted when a property of one of our route groups changes.
* The parameter is the RouteGroup that has changed.
*/
- PBD::Signal1<void, RouteGroup *> RouteGroupPropertyChanged;
+ PBD::Signal2<void, RouteGroup *, PBD::PropertyChange> RouteGroupPropertyChanged;
/** Emitted when a route is added to one of our route groups.
* First parameter is the RouteGroup, second is the route.
*/
@@ -1560,7 +1560,7 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
void route_added_to_route_group (RouteGroup *, boost::weak_ptr<Route>);
void route_removed_from_route_group (RouteGroup *, boost::weak_ptr<Route>);
- void route_group_property_changed (RouteGroup *);
+ void route_group_property_changed (RouteGroup *, PBD::PropertyChange);
/* SOURCES */