From 730937dc37237c580238171f30e1c02243b8f758 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 15 Mar 2012 02:31:09 +0000 Subject: better, cleaner fix for copying sends/returns/port inserts via XML state git-svn-id: svn://localhost/ardour2/branches/3.0@11691 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/return.cc | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'libs/ardour/return.cc') diff --git a/libs/ardour/return.cc b/libs/ardour/return.cc index 8433f7de08..0152155338 100644 --- a/libs/ardour/return.cc +++ b/libs/ardour/return.cc @@ -57,17 +57,6 @@ Return::Return (Session& s, bool internal) _meter.reset (new PeakMeter (_session)); } -Return::Return (Session& s, const std::string& name, uint32_t bslot, bool internal) - : IOProcessor (s, (internal ? false : true), false, name) - , _metering (false) - , _bitslot (bslot) -{ - /* never muted */ - - _amp.reset (new Amp (_session)); - _meter.reset (new PeakMeter (_session)); -} - Return::~Return () { _session.unmark_return_id (_bitslot); @@ -175,15 +164,3 @@ Return::configure_io (ChanCount in, ChanCount out) return true; } -/** Set up the XML description of a return so that we will not - * reset its name or bitslot during ::set_state() - * @param state XML return state. - */ -void -Return::make_unique (XMLNode &state) -{ - state.add_property ("ignore-bitslot", "1"); - state.add_property ("ignore-name", "1"); -} - - -- cgit v1.2.3