summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-06-29 00:57:27 +0000
committerCarl Hetherington <carl@carlh.net>2009-06-29 00:57:27 +0000
commit26328c9ef1d010e8cd4672407f0a2b08c5f49e20 (patch)
tree035f429dbe450d91e42fe14a1d1a4d7960e1a91f /libs
parentda148faf0036ddff11c38c7773e09d8893c951b4 (diff)
lincoln's patch from mantis 2757 to add route group property checkboxes in the route groups
editor list, and to initialise new route groups with some appropriate properties. git-svn-id: svn://localhost/ardour2/branches/3.0@5295 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/ardour/route_group.h2
-rw-r--r--libs/ardour/route_group.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/route_group.h b/libs/ardour/ardour/route_group.h
index 2ea7b95208..7b7166decd 100644
--- a/libs/ardour/ardour/route_group.h
+++ b/libs/ardour/ardour/route_group.h
@@ -52,7 +52,7 @@ public:
Edit = 0x20
};
- RouteGroup (Session& s, const std::string &n, Flag f = Flag(0));
+ RouteGroup (Session& s, const std::string &n, Flag f = Flag(0), Property p = Property(0));
const std::string& name() { return _name; }
void set_name (std::string str);
diff --git a/libs/ardour/route_group.cc b/libs/ardour/route_group.cc
index 826341092f..f88df5c86a 100644
--- a/libs/ardour/route_group.cc
+++ b/libs/ardour/route_group.cc
@@ -38,8 +38,8 @@ using namespace ARDOUR;
using namespace sigc;
using namespace std;
-RouteGroup::RouteGroup (Session& s, const string &n, Flag f)
- : _session (s), _name (n), _flags (f), _properties (Property (0))
+RouteGroup::RouteGroup (Session& s, const string &n, Flag f, Property p)
+ : _session (s), _name (n), _flags (f), _properties (Property (p))
{
}