X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fpannable.cc;h=09a63cca3f83fa77f6b9ef1d3fe6b2e64ad6532d;hb=e6da4c4846cd3097e2393f0e43016b870e7cf592;hp=1298b85d9080d82fc4ddc7e7e97079bfd3814253;hpb=e4b5a842117dfb7aa6e488bc97fecd7ec53234a3;p=ardour.git diff --git a/libs/ardour/pannable.cc b/libs/ardour/pannable.cc index 1298b85d90..09a63cca3f 100644 --- a/libs/ardour/pannable.cc +++ b/libs/ardour/pannable.cc @@ -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 ac = boost::dynamic_pointer_cast(ci->second); if (ac) { - ac->alist()->stop_touch (mark, when); + ac->alist()->stop_touch (when); } } g_atomic_int_set (&_touching, 0); @@ -166,11 +166,11 @@ Pannable::stop_touch (bool mark, double when) XMLNode& Pannable::get_state () { - return state (true); + return state (); } XMLNode& -Pannable::state (bool /*full*/) +Pannable::state () { XMLNode* node = new XMLNode (X_("Pannable"));