Make foldback bus match foldback sends namewise
[ardour.git] / libs / ardour / pannable.cc
index 6b64a802bcc4b0c18f263be741a06ff609cc5f65..09a63cca3f83fa77f6b9ef1d3fe6b2e64ad6532d 100644 (file)
@@ -150,14 +150,14 @@ Pannable::start_touch (double when)
 }
 
 void
-Pannable::stop_touch (bool mark, double when)
+Pannable::stop_touch (double when)
 {
        const Controls& c (controls());
 
        for (Controls::const_iterator ci = c.begin(); ci != c.end(); ++ci) {
                boost::shared_ptr<AutomationControl> ac = boost::dynamic_pointer_cast<AutomationControl>(ci->second);
                if (ac) {
-                       ac->alist()->stop_touch (mark, when);
+                       ac->alist()->stop_touch (when);
                }
        }
        g_atomic_int_set (&_touching, 0);
@@ -166,13 +166,12 @@ Pannable::stop_touch (bool mark, double when)
 XMLNode&
 Pannable::get_state ()
 {
-       return state (true);
+       return state ();
 }
 
 XMLNode&
-Pannable::state (bool /*full*/)
+Pannable::state ()
 {
-       LocaleGuard lg;
        XMLNode* node = new XMLNode (X_("Pannable"));
 
        node->add_child_nocopy (pan_azimuth_control->get_state());