summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-07-13 01:14:49 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-07-13 01:14:49 +0000
commit385635c445490f27c2243924e2c53a3fe1dfa56e (patch)
tree0ed99d57924c34ac345cc04ad25806899ad19f1d /libs/ardour/route.cc
parent88beef2e93d26d28467fe151f5ef2972d0ca9169 (diff)
more removal of Placement
git-svn-id: svn://localhost/ardour2/branches/3.0@5345 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc16
1 files changed, 0 insertions, 16 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 84b46f020c..af80fd6c89 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -721,22 +721,6 @@ Route::add_processor (boost::shared_ptr<Processor> processor, ProcessorList::ite
}
bool
-Route::add_processor_from_xml (const XMLNode& node, Placement placement)
-{
- ProcessorList::iterator loc;
-
- if (placement == PreFader) {
- /* generic pre-fader: insert immediately before the amp */
- loc = find(_processors.begin(), _processors.end(), _amp);
- } else {
- /* generic post-fader: insert at end */
- loc = _processors.end();
- }
-
- return add_processor_from_xml (node, loc);
-}
-
-bool
Route::add_processor_from_xml (const XMLNode& node, ProcessorList::iterator iter)
{
const XMLProperty *prop;