summaryrefslogtreecommitdiff
path: root/libs/ardour/port_insert.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-07-17 13:59:46 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-07-17 13:59:46 +0000
commitb621b28fce4942fb4505854482cddec1545f5c0f (patch)
tree8e4895d32b519a666adaa9950fb6d7e905ffa2c3 /libs/ardour/port_insert.cc
parentc677de4816f86c11feb8cf92bbe75af28437d5ac (diff)
make it possible to (and actually do) name insert and send ports as "return" and "send" rather than "in" and "out" (#5012)
git-svn-id: svn://localhost/ardour2/branches/3.0@13052 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/port_insert.cc')
-rw-r--r--libs/ardour/port_insert.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/port_insert.cc b/libs/ardour/port_insert.cc
index aa2d1392f5..b726b14aa5 100644
--- a/libs/ardour/port_insert.cc
+++ b/libs/ardour/port_insert.cc
@@ -44,7 +44,7 @@ PortInsert::name_and_id_new_insert (Session& s, uint32_t& bitslot)
}
PortInsert::PortInsert (Session& s, boost::shared_ptr<Pannable> pannable, boost::shared_ptr<MuteMaster> mm)
- : IOProcessor (s, true, true, name_and_id_new_insert (s, _bitslot), "")
+ : IOProcessor (s, true, true, name_and_id_new_insert (s, _bitslot), "", DataType::AUDIO, true)
, _out (new Delivery (s, _output, pannable, mm, _name, Delivery::Insert))
{
_mtdm = 0;