summaryrefslogtreecommitdiff
path: root/libs/ardour/route_group.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-02-19 18:09:08 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-02-19 18:09:08 +0000
commitfa701b8c065251d242342b86a54d91826d2290a0 (patch)
tree106865e709c61a1d3af045a26a757b22ba423c3e /libs/ardour/route_group.cc
parent728bedf9b917287ea76b98860dec04e72472230c (diff)
change PropertyChange from a bitfield into a real object, with all the many widespread changes that causes
git-svn-id: svn://localhost/ardour2/branches/3.0@6701 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/route_group.cc')
-rw-r--r--libs/ardour/route_group.cc21
1 files changed, 9 insertions, 12 deletions
diff --git a/libs/ardour/route_group.cc b/libs/ardour/route_group.cc
index 5b998d22f7..5e50c15457 100644
--- a/libs/ardour/route_group.cc
+++ b/libs/ardour/route_group.cc
@@ -40,9 +40,6 @@ using namespace ARDOUR;
using namespace PBD;
using namespace std;
-PropertyChange RouteGroup::FlagsChange = new_change ();
-PropertyChange RouteGroup::PropertiesChange = new_change ();
-
namespace ARDOUR {
namespace Properties {
PropertyDescriptor<bool> relative;
@@ -70,15 +67,15 @@ RouteGroup::make_property_quarks ()
Properties::edit.id = g_quark_from_static_string (X_("edit"));
}
-#define ROUTE_GROUP_DEFAULT_PROPERTIES _relative (Properties::relative, FlagsChange, false) \
- , _active (Properties::active, FlagsChange, false) \
- , _hidden (Properties::hidden, FlagsChange, false) \
- , _gain (Properties::gain, PropertiesChange, false) \
- , _mute (Properties::mute, PropertiesChange, false) \
- , _solo (Properties::solo, PropertiesChange , false) \
- , _recenable (Properties::recenable, PropertiesChange, false) \
- , _select (Properties::select, PropertiesChange, false) \
- , _edit (Properties::edit, PropertiesChange , false)
+#define ROUTE_GROUP_DEFAULT_PROPERTIES _relative (Properties::relative, false) \
+ , _active (Properties::active, false) \
+ , _hidden (Properties::hidden, false) \
+ , _gain (Properties::gain, false) \
+ , _mute (Properties::mute, false) \
+ , _solo (Properties::solo, false) \
+ , _recenable (Properties::recenable, false) \
+ , _select (Properties::select, false) \
+ , _edit (Properties::edit, false)
RouteGroup::RouteGroup (Session& s, const string &n)
: SessionObject (s, n)