From fde0e293a30ed4e689208b456a4431b7bb278eb4 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 24 Jul 2017 01:22:50 +0200 Subject: Remove unused "mark" parameter from stop_touch() API --- libs/ardour/pannable.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/ardour/pannable.cc') diff --git a/libs/ardour/pannable.cc b/libs/ardour/pannable.cc index 1298b85d90..32bf2fe33f 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); -- cgit v1.2.3