Remove unnecessary 0 checks before delete; see http://www.parashift.com/c++-faq-lite...
[ardour.git] / libs / ardour / automation_control.cc
index afa14c3f98ec937237dfef08832f4d5684bad343..2100265a87b513d7e217e17e1732f4c9d5caaaae 100644 (file)
@@ -31,23 +31,21 @@ using namespace PBD;
 
 AutomationControl::AutomationControl(
                ARDOUR::Session& session,
-               const Parameter& parameter,
+               const Evoral::Parameter& parameter,
                boost::shared_ptr<ARDOUR::AutomationList> list,
                const string& name)
-       : Controllable((name != "") ? name : parameter.symbol())
+       : Controllable((name != "") ? name : EventTypeMap::instance().to_symbol(parameter))
        , Evoral::Control(parameter, list)
        , _session(session)
 {
 }
 
 
-/** Get the currently effective value (ie the one that corresponds to current output)
- */
 float
 AutomationControl::get_value() const
 {
        bool from_list = _list && ((AutomationList*)_list.get())->automation_playback();
-       return Control::get_value(from_list, _session.transport_frame());
+       return Control::get_float(from_list, _session.transport_frame());
 }
 
 
@@ -55,9 +53,9 @@ void
 AutomationControl::set_value(float value)
 {
        bool to_list = _list && _session.transport_stopped()
-               && ((AutomationList*)_list.get())->automation_playback();
+               && ((AutomationList*)_list.get())->automation_write();
        
-       Control::set_value(value, to_list, _session.transport_frame());
+       Control::set_float(value, to_list, _session.transport_frame());
 
        Changed(); /* EMIT SIGNAL */
 }