Remove unused method.
[ardour.git] / libs / ardour / automation_control.cc
index 2989d82818ecc23bb8dde1eda6dc1bdc0a7e11ff..a1611337fd78f07262a7f272080c8b10289845de 100644 (file)
@@ -34,7 +34,7 @@ AutomationControl::AutomationControl(
                const Evoral::Parameter& parameter,
                boost::shared_ptr<ARDOUR::AutomationList> list,
                const string& name)
-       : Controllable((name != "") ? name : EventTypeMap::instance().to_symbol(parameter))
+       : Controllable (name.empty() ? EventTypeMap::instance().to_symbol(parameter) : name)
        , Evoral::Control(parameter, list)
        , _session(session)
 {
@@ -55,7 +55,7 @@ AutomationControl::set_value(double value)
  
         if (to_list && parameter().toggled()) {
 
-                //store the previous value just before this so any 
+                // store the previous value just before this so any 
                 // interpolation works right
                 
                 _list->add (get_double(), _session.transport_frame()-1);