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/automation_control.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libs/ardour/automation_control.cc') diff --git a/libs/ardour/automation_control.cc b/libs/ardour/automation_control.cc index c3ad2481d6..274e84f9f0 100644 --- a/libs/ardour/automation_control.cc +++ b/libs/ardour/automation_control.cc @@ -291,17 +291,16 @@ AutomationControl::start_touch(double when) } void -AutomationControl::stop_touch(bool mark, double when) +AutomationControl::stop_touch(double when) { if (!_list) return; if (touching()) { set_touching (false); if (alist()->automation_state() == Touch) { - alist()->stop_touch (mark, when); + alist()->stop_touch (when); if (!_desc.toggled) { AutomationWatch::instance().remove_automation_watch (shared_from_this()); - } } } -- cgit v1.2.3