X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fautomation_list.cc;h=fbeb98fa2678db49b7b84329f9110dd45f6e8ef2;hb=567c0a8f5321f70f13e8e0c4c78725ce4521608b;hp=40c924d293a2aad23410d59f8688a038f893f773;hpb=544031cecf4a022d588ece7aa4af133325f9e149;p=ardour.git diff --git a/libs/ardour/automation_list.cc b/libs/ardour/automation_list.cc index 40c924d293..fbeb98fa26 100644 --- a/libs/ardour/automation_list.cc +++ b/libs/ardour/automation_list.cc @@ -59,7 +59,6 @@ AutomationList::AutomationList (const Evoral::Parameter& id, const Evoral::Param , _before (0) { _state = Off; - _style = Absolute; g_atomic_int_set (&_touching, 0); create_curve_if_necessary(); @@ -73,7 +72,6 @@ AutomationList::AutomationList (const Evoral::Parameter& id) , _before (0) { _state = Off; - _style = Absolute; g_atomic_int_set (&_touching, 0); create_curve_if_necessary(); @@ -87,7 +85,6 @@ AutomationList::AutomationList (const AutomationList& other) , StatefulDestructible() , _before (0) { - _style = other._style; _state = other._state; g_atomic_int_set (&_touching, other.touching()); @@ -101,7 +98,6 @@ AutomationList::AutomationList (const AutomationList& other, double start, doubl : ControlList(other, start, end) , _before (0) { - _style = other._style; _state = other._state; g_atomic_int_set (&_touching, other.touching()); @@ -120,7 +116,6 @@ AutomationList::AutomationList (const XMLNode& node, Evoral::Parameter id) { g_atomic_int_set (&_touching, 0); _state = Off; - _style = Absolute; set_state (node, Stateful::loading_state_version); @@ -173,7 +168,6 @@ AutomationList::operator= (const AutomationList& other) ControlList::operator= (other); _state = other._state; - _style = other._style; _touching = other._touching; mark_dirty (); @@ -208,15 +202,6 @@ AutomationList::set_automation_state (AutoState s) } } -void -AutomationList::set_automation_style (AutoStyle s) -{ - if (s != _style) { - _style = s; - automation_style_changed (); /* EMIT SIGNAL */ - } -} - void AutomationList::start_write_pass (double when) { @@ -359,8 +344,6 @@ AutomationList::state (bool full) root->set_property ("state", Off); } - root->set_property ("style", _style); - if (!_events.empty()) { root->add_child_nocopy (serialize_events()); } @@ -516,10 +499,6 @@ AutomationList::set_state (const XMLNode& node, int version) _default_value = 0.0; } - if (!node.get_property (X_("style"), _style)) { - _style = Absolute; - } - if (node.get_property (X_("state"), _state)) { if (_state == Write) { _state = Off; @@ -564,7 +543,6 @@ AutomationList::operator!= (AutomationList const & other) const return ( static_cast (*this) != static_cast (other) || _state != other._state || - _style != other._style || _touching != other._touching ); }