summaryrefslogtreecommitdiffstats
path: root/src/engine/PortImpl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-02-03 19:27:29 +0000
committerDavid Robillard <d@drobilla.net>2010-02-03 19:27:29 +0000
commit3e495d47f06cca50521076e8f77a966dfec521ab (patch)
tree8ee0d2ab6c9625d419469a7cc94935f45f3abb0e /src/engine/PortImpl.cpp
parent3bfa32ee840e1f5abbfc392a2323e9ba0c4a78ce (diff)
downloadingen-3e495d47f06cca50521076e8f77a966dfec521ab.tar.gz
ingen-3e495d47f06cca50521076e8f77a966dfec521ab.tar.bz2
ingen-3e495d47f06cca50521076e8f77a966dfec521ab.zip
Make human names work with LADSPA plugins as well (fix ticket #477).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2416 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/PortImpl.cpp')
-rw-r--r--src/engine/PortImpl.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/engine/PortImpl.cpp b/src/engine/PortImpl.cpp
index e9dd4f7f..22492378 100644
--- a/src/engine/PortImpl.cpp
+++ b/src/engine/PortImpl.cpp
@@ -40,14 +40,14 @@ namespace Ingen {
using namespace Shared;
-PortImpl::PortImpl(BufferFactory& bufs,
- NodeImpl* const node,
- const string& name,
- uint32_t index,
- uint32_t poly,
- PortType type,
- const Atom& value,
- size_t buffer_size)
+PortImpl::PortImpl(BufferFactory& bufs,
+ NodeImpl* const node,
+ const Raul::Symbol& name,
+ uint32_t index,
+ uint32_t poly,
+ PortType type,
+ const Atom& value,
+ size_t buffer_size)
: GraphObjectImpl(node, name, (type == PortType::AUDIO || type == PortType::CONTROL))
, _bufs(bufs)
, _index(index)